本帖最後由 李泳霖 於 2021-2-3 14:54 編輯
運用巢狀 while迴圈 , 寫一個排列整齊的九九乘法表如下圖所示.
提示: \t 代表鍵盤上的Tab鍵, 可用來對齊
- public class Ch25
- {
- public static void main(String args[])
- {
- int i=1;
- while(i<=9)
- {
- int j=1;
- while(j<=9)
- {
- System.out.print(i+"x"+j+"="+(i*j)+"\t");
- j++;
- }
- System.out.println();
- i++;
- }
- }
- }
複製代碼 |