how to print the whole multiplication table in java using a for inside a for code example
Example: java multiplication table nested loop
public class Main {
public static void main(String[] args) {
for (int y = 1; y < 12; ++y) {
for (int x = 1; x < 12; ++x) {
System.out.printf("%4d", y*x);
}
System.out.println();
}
}
}