package pl.codegym.task.task03.task0314;
/*
Tabliczka mnożenia
*/
public class Solution {
public static void main(String[] args) {
//tutaj wpisz swój kod
int i = 1;
while (i <=10){
int j = 1;
while (j <=9){
System.out.print(i*j + " ");
j++;
}
i++;
System.out.println(i*j + " ");
}
}
}
A wyświetla tak :-(((
1 2 3 4 5 6 7 8 9 20
2 4 6 8 10 12 14 16 18 30
6 6 9 12 15 18 21 24 27 40 itd...
package pl.codegym.task.task03.task0314;
/*
Tabliczka mnożenia
*/
public class Solution {
public static void main(String[] args) {
//tutaj wpisz swój kod
int i = 1;
while (i <=10){
int j = 1;
while (j <=9){
System.out.print(i*j + " ");
j++;
}
i++;
System.out.println(i*j + " ");
}
}
}