本帖最後由 tonyh 於 2021-9-4 20:48 編輯
利用巢狀回圈, 將符號*整齊排列成如下之三角形:
- public class Ch20
- {
- public static void main(String args[])
- {
- for(________________)
- {
- for(________________)
- System.out.print(" ");
- for(________________)
- System.out.print("*");
- System.out.println();
- }
- }
- }
複製代碼- public class Ch20
- {
- public static void main(String args[])
- {
- // i 1 2 3 4 5
- //空白 0 1 2 3 4
- //星星 9 7 5 3 1
- for(int i=1; i<=5; i++)
- {
- for(int j=1; j<=i-1; j++)
- System.out.print(" ");
- for(int k=1; k<=11-2*i; k++)
- System.out.print("*");
- System.out.println();
- }
- }
- }
複製代碼 |