用户输入
5
所需输出(使用 while 循环)
1 2 3 4 5
2 4 6 8 10
3 6 9 12 15
4 8 12 16 20
5 10 15 20 25
代码:
while (temp1 <= a) {
while (temp2 <= a) {
temp = temp2 * temp1;
System.out.print(temp + " ");
temp2++;
}
temp1++;
System.out.println();
}
我正在a
输入并尝试形成该数字,但我不能..请帮助