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