打印三角形

  •   /*
           *
          ***
         *****
        *******
       *********
      */
      
      public class TestDemo01 {
          public static void main(String[] args) {
              //打印三角形  5行
              for(int i=1;i<=5;i++){
                  for (int j = 5; j>=i; j--) {
                      System.out.print(" ");
                  }
                  for (int j=1; j<=i;j++){
                      System.out.print("*");
                  }
                  for(int j=1;j < i;j++){
                      System.out.print("*");
                  }
                  System.out.println();
              }
          }
    

posted on 2024-03-26 18:47  惬允  阅读(1)  评论(0编辑  收藏  举报