-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTwentytwo.java
49 lines (35 loc) · 1.05 KB
/
Twentytwo.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
import java.util.Scanner;
public class Twentytwo {
public static void main(String[] args) {
Scanner sc= new Scanner(System.in);
int [][]arr1=new int[3][3];
int [][]arr2= new int [3][3];
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
System.out.print("Enter the number at_" +i+j+ " -->" );
arr1[i][j]=sc.nextInt();
}
}
System.out.println("Given Matrix");
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
System.out.print(arr1[i][j]);
System.out.print(" ");
}
System.out.println(" ");
}
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
arr2[j][i]=arr1[i][j];
}
}
System.out.println("Reverse Matrix");
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
System.out.print(arr2[i][j]);
System.out.print(" ");
}
System.out.println(" ");
}
}
}