-
Notifications
You must be signed in to change notification settings - Fork 3
/
rotate_matrix_by_90.java
55 lines (41 loc) · 1.25 KB
/
rotate_matrix_by_90.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import java.io.*;
import java.util.*;
public class rotate_matrix_by_90 {
public static void main(String[] args) throws Exception {
Scanner scn = new Scanner(System.in);
int n = scn.nextInt();
int[][] arr = new int[n][n];
for(int i = 0; i < arr.length; i++){
for(int j = 0; j < arr[0].length; j++){
arr[i][j] = scn.nextInt();
}
}
for(int i = 0; i < arr.length; i++){
for(int j = i; j < arr[0].length; j++){
int temp = arr[i][j];
arr[i][j] = arr[j][i];
arr[j][i] = temp;
}
}
for(int i = 0; i < arr.length; i++){
int li = 0;
int ri = arr[i].length - 1;
while(li < ri){
int temp = arr[i][li];
arr[i][li] = arr[i][ri];
arr[i][ri] = temp;
li++;
ri--;
}
}
display(arr);
}
public static void display(int[][] arr){
for(int i = 0; i < arr.length; i++){
for(int j = 0; j < arr[0].length; j++){
System.out.print(arr[i][j] + " ");
}
System.out.println();
}
}
}