Write a program to print the following formation depending upon size of the matrix. Spaces between numbers are also important. Use System.out.println or System.out.print for printing.
Input (Integer) |
Printed Output |
4 |
1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4 |
5 |
1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 |