返回列表 發帖

巢狀迴圈 - 小星星 (一)

利用巢狀回圈, 將符號*整齊排列成如下之三角形:

  1. public class Ch19
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          for(int i=1; i<=5; i++)
  6.          {
  7.              for(int j=1; j<=5-i; j++)
  8.                  System.out.print(" ");
  9.              for(int k=1; k<=2*i-1; k++)
  10.                  System.out.print("*");
  11.              System.out.println();
  12.          }
  13.     }
  14. }
複製代碼

  1. public class Ch09
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          for(int i=1; i<=5; i++)
  6.          {
  7.              for(int j=5; j>=i; j--)
  8.                  System.out.print(" ");
  9.              for(int k=1; k<=2*i-1; k++)
  10.                  System.out.print("*");
  11.              System.out.println();
  12.          }
  13.     }
  14. }
複製代碼

TOP

  1. public class Ch11
  2. {
  3.    public static void main(String args[])
  4.    {
  5.         for(int i=1; i<=5; i++)
  6.         {
  7.              for(int j=1; j<=5-i; j++)
  8.                  System.out.print(" ");
  9.              for(int k=1; k<=2*i-1; k++)
  10.                  System.out.print("*");
  11.              System.out.println();
  12.         }
  13.    }
  14. }
複製代碼

TOP

  1. public class Ch19
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          for(int k=1; k<=5; k++)
  6.          {
  7.              for(int f=1; f<=5-k; f++)
  8.                  System.out.print(" ");
  9.              for(int c=1; c<=2*k-1; c++)
  10.                  System.out.print("*");
  11.              System.out.println();
  12.          }
  13.     }
  14. }
複製代碼

TOP

  1. public class Ch12
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          for(int i=1; i<=5; i++)
  6.          {
  7.               for(int j=1; j<=5-i; j++)
  8.                      System.out.print(" ");
  9.               for(int k=1; k<=2*i-1; k++)
  10.                       System.out.print("*");
  11.               System.out.println();
  12.          }
  13.     }
  14. }
複製代碼

TOP

本帖最後由 林育鋐 於 2019-1-23 13:48 編輯
  1. public class Ch08
  2. {
  3.     public static void main(String args[])
  4.     {
  5.              int i,j,k;
  6.              for(i=1;i<6;i++){
  7.                      for(j=1;j<=5-i;j++){
  8.                              System.out.print(" ");
  9.                  }
  10.                      for(k=1;k<=2*i-1;k++){
  11.                              System.out.print("*");
  12.                      }
  13.                      System.out.println();
  14.        }
  15.     }
  16. }
複製代碼

TOP

  1. public class Ch12
  2. {
  3.         public static void main(String[] args)
  4.         {
  5.                 for (int i=1;i<=5;i++)
  6.                 {       
  7.                         for (int j=1;j<=5-i;j++)
  8.                                 System.out.print(" ");
  9.                         for (int k=1;k<=2*i-1;k++)
  10.                                 System.out.print("*");
  11.                 System.out.println();
  12.                 }
  13.         }

  14. }
複製代碼

TOP

  1. public class Ch15 {

  2.         public static void main(String[] args) {
  3.             for(int i=0;i<=5;i++)
  4.             {
  5.                     for(int j=1;j<=5-i;j++)
  6.                     {
  7.                   System.out.print(" ");
  8.                     }
  9.                     for(int k=1;k<=i*2-1;k++)
  10.                     {
  11.                   System.out.print("*");
  12.                     }       
  13.                     System.out.println();
  14.             }
  15.         }
複製代碼
May

TOP

返回列表