#18141: 請問我這題的問題出在哪邊?


jheng.tom@gmail.com (龍喜哩姆丟)

學校 : 不指定學校
編號 : 97093
來源 : [125.227.255.81]
最後登入時間 :
2019-06-19 16:59:58
a015. 矩陣的翻轉 | From: [125.227.255.81] | 發表日期 : 2019-06-19 17:34

WA (line:4)

#0: 100% WA (line:4)

您共輸出 3 行。
以上是錯誤
----------------------------------------

import java.util.Scanner;
public class a015 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int a = scan.nextInt();
int b = scan.nextInt();
int[][] input = new int[a][b];
int[][] output = new int[b][a];
int i, j;
for (i = 0; i < a; i++) {
for (j = 0; j < b; j++) {
input[i][j] = scan.nextInt();
output[j][i] = input[i][j];
}
}

for (j = 0; j < b; j++) {
for (i = 0; i < a; i++) {
System.out.print(output[j][i]+" ");
}
System.out.printf("\n");
}
scan.close();
}
}

 
#18144: Re:請問我這題的問題出在哪邊?


rexwu1104@gmail.com (黑雪公主 Black Lotus)

學校 : 新北市私立南山高級中學
編號 : 93041
來源 : [49.216.131.103]
最後登入時間 :
2024-06-06 19:28:43
a015. 矩陣的翻轉 | From: [36.224.136.126] | 發表日期 : 2019-06-19 18:29

WA (line:4)

#0: 100% WA (line:4)

您共輸出 3 行。
以上是錯誤
----------------------------------------

import java.util.Scanner;
public class a015 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int a = scan.nextInt();
int b = scan.nextInt();
int[][] input = new int[a][b];
int[][] output = new int[b][a];
int i, j;
for (i = 0; i < a; i++) {
for (j = 0; j < b; j++) {
input[i][j] = scan.nextInt();
output[j][i] = input[i][j];
}
}

for (j = 0; j < b; j++) {
for (i = 0; i < a; i++) {
System.out.print(output[j][i]+" ");
}
System.out.printf("\n");
}
scan.close();
}
}

我建議你可去看看我的

說不定可以找到盲點

 
ZeroJudge Forum