本帖最後由 李泳霖 於 2022-1-26 14:05 編輯
利用巢狀回圈, 將符號*整齊排列成如下之三角形:
- public class Ch20
- {
- public static void main(String args[])
- {
- for(________________)
- {
- for(________________)
- System.out.print(" ");
- for(________________)
- System.out.print("*");
- System.out.println();
- }
- }
- }
複製代碼 i(列) 1 2 3 4 5
j(空白) 0 1 2 3 4
k(星星) 9 7 5 3 1- import java.util.Scanner;
- public class Ch01 {
- public static void main(String args[])
- {
- 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();
- }
- }
-
- }
複製代碼 |