import java.util.Scanner;
public class Main {
public static void rank(int[][] array){
int[][] arr = new int[3][3];
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
arr[i][j]=array[j][i];
}
}
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
array[i][j] = arr[i][j];
System.out.print(array[i][j]+" ");
}
System.out.println();
}
}
public static void main(String[] arg){
Scanner sc = new Scanner(System.in);
int[][] array = new int[3][3];
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
array[i][j] = sc.nextInt();
}
}
rank(array);
}
}
0.0分
0 人评分
【亲和数】 (C语言代码)浏览:892 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:618 |
WU-C语言程序设计教程(第三版)课后习题11.11 (C++代码)(想学链表的可以看看)浏览:1429 |
C语言考试练习题_一元二次方程 (C语言代码)浏览:603 |
【矩阵】 (C++代码)浏览:979 |
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:325 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:808 |
【出圈】 (C++代码)简单循环浏览:694 |
整数分类问题 为什么输出总是数字8啊浏览:448 |
简单的a+b (C语言代码)浏览:648 |