Java程序来转置矩阵。
以下是必需的程序。
示例
public class Tester {
public static void main(String args[]) {
int a[][] = { { 1, 3, 4 }, { 2, 4, 3 }, { 3, 4, 5 } };
int t[][] = new int[3][3];
//转置矩阵
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
t[i][j] = a[j][i];
}
}
System.out.println("原始矩阵:");
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
System.out.print(a[i][j] + " ");
}
System.out.println();
}
System.out.println("转置矩阵:");
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
System.out.print(t[i][j] + " ");
}
System.out.println();
}
}
}输出结果
原始矩阵: 1 3 4 2 4 3 3 4 5 转置矩阵: 1 2 3 3 4 4 4 3 5
热门推荐
10 朋友花篮开业祝福语简短
11 姐姐生日祝福语漂亮简短
12 喜得新房文案祝福语简短
13 养生祝福语女生短句简短
14 送女士祝福语长辈简短
15 安徽疫情祝福语简短英语
16 师傅退休蛋糕祝福语简短
17 下雨开工吉祥祝福语简短
18 给长辈祝福语简短大全