Hello Dev's.
Está é uma resolução minha para a tabuada, espero que ajude a acrescente algo bom ao seu aprendizado..
Forte abraço..
Segue o código:
public class TestaLacos {
public static void main(String[] args) {
for (int i = 1; i <= 10; i++) {
for (int j = 0; j <= 10; j++) {
System.out.println(i + " x " + j + " = " + i * j);
}
System.out.println();
}
}
}