本帖最後由 tonyh 於 2021-9-4 20:53 編輯
- public class Ch20
- {
- public static void main(String args[])
- {
- for(________________)
- {
- for(________________)
- System.out.print(" ");
- for(________________)
- ________________
- 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(6-i);
- System.out.println();
- }
- }
- }
複製代碼 |