ユーザー入力
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
入力として取り、その図を形成しようとしていますが、できません..助けてください