Java 实例 – 打印倒立的三角形

打印倒立的三角形。

实例

  1. public class InvertedTriangle {
  2. public static void main(String[] args) {
  3. //打印倒立的三角形
  4. for (int m = 1; m <= 4; m++) {
  5. //打印空格
  6. for (int n = 0; n <= m; n++) {
  7. System.out.print(" ");
  8. }
  9. //打印*
  10. for (int x = 1; x <= 7 -2 * (m - 1); x++) {
  11. System.out.print("*");
  12. }
  13. System.out.println();
  14. }
  15. }
  16. }

输出结果:

  1. *******
  2. *****
  3. ***
  4. *