#19516: 測資AC 送出後WA 試問哪裡出了問題


z85385637 (M-Kai)

學校 : 樹德科技大學
編號 : 96081
來源 : [180.218.46.214]
最後登入時間 :
2022-10-13 21:14:12
a015. 矩陣的翻轉 | From: [210.63.221.246] | 發表日期 : 2019-10-06 16:04

import java.util.Scanner;

public class a015 {

public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);

int row = sc.nextInt();
int count = sc.nextInt();
int [][]array = new int [count][row] ;


for (int i = 0 ; i < row ; i++) {
for ( int j = 0 ; j < count ; j++ ) {
array[j][i] = sc.nextInt();
}
}

for(int [] i : array) {
for(int j : i ) {
System.out.print(j+" ");
}
System.out.println();
}}}

 
#19517: Re:測資AC 送出後WA 試問哪裡出了問題


z85385637 (M-Kai)

學校 : 樹德科技大學
編號 : 96081
來源 : [180.218.46.214]
最後登入時間 :
2022-10-13 21:14:12
a015. 矩陣的翻轉 | From: [210.63.221.246] | 發表日期 : 2019-10-06 16:12

import java.util.Scanner;

public class a015 {

public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);

int row = sc.nextInt();
int count = sc.nextInt();
int [][]array = new int [count][row] ;


for (int i = 0 ; i < row ; i++) {
for ( int j = 0 ; j < count ; j++ ) {
array[j][i] = sc.nextInt();
}
}

for(int [] i : array) {
for(int j : i ) {
System.out.print(j+" ");
}
System.out.println();
}}}


已解決

 
ZeroJudge Forum