返回列表 發帖

巢狀迴圈 - 小星星 (一)

本帖最後由 tonyh 於 2021-8-17 18:33 編輯

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

  1. public class Ch19
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          for(________________)
  6.          {
  7.              for(________________)
  8.                  System.out.print(" ");
  9.              for(________________)
  10.                  System.out.print("*");
  11.              System.out.println();
  12.          }
  13.     }
  14. }
複製代碼
本帖隱藏的內容需要回復才可以瀏覽

本帖最後由 吳孟修 於 2021-8-17 18:29 編輯
  1. public class Ch07
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          for(int i=1;i<=5;i++)
  6.          {
  7.              for(int x=5-i;x>=1;x--)
  8.                  System.out.print(" ");
  9.              for(int y=2*i-1;y>=1;y--)
  10.                  System.out.print("*");
  11.              System.out.println();
  12.          }
  13.     }
  14. }
複製代碼

TOP

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

TOP

返回列表