本帖最後由 tonyh 於 2014-11-8 17:39 編輯
利用巢狀迴圈, 寫一個排列整齊的九九乘法表如下圖所示.
提示: \t 代表鍵盤上的Tab鍵, 可用來對齊
- public class ch18
- {
- public static void main(String args[])
- {
- for(int i=1; i<=9; i++)
- {
- for(int j=1; j<=9; j++)
- {
- System.out.print(i+"x"+j+"="+(i*j)+"\t");
- }
- System.out.println();
- }
- }
- }
複製代碼 |