java multiplication table nested loop 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();
}
}
}