Question: Prepare a program that prints the multiplication table for numbers 1 to 9. The program should include two nested loops and compute the products and print them
(i.e. not just printf statements containing the answers).
It should conform to the subsequent format (given here for numbers 1 to 4 only)
1 2 3 4
-------------------
1 1 2 3 4
2 2 4 6 8
3 3 6 9 12
4 4 8 12 16
Solve this Program using java programming concepts and give your answer ASAP.