|
九九乘法表 (一)
利用巢狀迴圈,寫一個排列整齊的九九乘法表如下圖所示。
提示:\t 代表鍵盤上的Tab鍵,可用來對齊。
- public class Ch14 {
- 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();
- }
- }
- }
複製代碼 |
|