Programming Examples
Java program to rotation input matrix 90 degree and print
Write a program to declare a square matrix A[ ][ ] of order MxM where 'M' is the number of rows and the number of columns, such that M must be greater than 2 and  less than 10. Accept the value of M as user input. Display an appropriate message for  an invalid input. Allow the user to input integers  into  this  matrix.  Perform  the  following tasks:
(a) Display the original matrix.
(b) Rotate the matrix 90° clockwise as shown below:
Original matrix
Â
1 2 3
4 5 6
7 8 9
Â
Rotated matrix
7 4 1
8 5 2
9 6 3
Â
(c) Find the sum of the elements of the four comers of the matrix.
Test your program with the sample data and some random data: Example 1
INPUT : M = 3
3 4 9
2 5 8
1 6 7
OUTPUT :
ORIGINAL MATRIX
3 4 9
2 5 8
1 6 7
MATRIX AFTER ROTATION
1 2 3
6 5 4
7 8 9
Sum of the corner elements = 20
Example 2
INPUT : M = 4
1 2 4 9
2 5 8 3
1 6 7 4
3 7 6 5
OUTPUT :
ORIGINAL MATRIX
1 2 4 9
2 5 8 3
1 6 7 4
3 7 6 5
Solution
Output