Write a program to display the multiplication table of a given number. code example
Example: Write a program that prints a multiplication table for numbers up to 12.
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();
}
}
}