本帖最後由 陳品肇 於 2019-6-29 17:04 編輯
利用巢狀回圈, 將符號*整齊排列成如下之三角形:
- public class Ch19
- {
- public static void main(String args[])
- {
- for(________________)
- {
- for(________________)
- System.out.print(" ");
- for(________________)
- System.out.print("*");
- System.out.println();
- }
- }
- }
複製代碼- import java.util.Scanner;
- public class D20190629 {
- public static void main(String args[])
- {
-
- for(int i=1;i<=5;i++) //幾行
- {
- for(int k=5;k>i;k--)
- {
- System.out.print(" ");
- }
- for(int j=1;j<=i*2-1;j++)
- {
- System.out.print("*");
- }
- System.out.println();
- }
- }
- }
複製代碼 |