#13306: 測試執行AC,但solve it!顯示WA


money678678 (Power Chiou)

學校 : 國立武陵高級中學
編號 : 61031
來源 : [114.43.11.181]
最後登入時間 :
2018-01-31 22:30:43
a015. 矩陣的翻轉 | From: [114.43.11.181] | 發表日期 : 2018-01-29 15:06

#include<iostream>
using namespace std;
int main(){
int n,m;
cin>>n>>m;
int arr[n][m];
for(int x=0;x<n;x++){
for(int y=0;y<m;y++){
cin>>arr[x][y];
}
}
for(int x=0;x<m;x++){
for(int y=0;y<n;y++){
cout<<arr[y][x]<<" ";
}
cout<<endl;
}

return 0;
}

 
#13309: Re:測試執行AC,但solve it!顯示WA


anandrewboy70900 (ShowTsai)

學校 : 國立中央大學
編號 : 27736
來源 : [203.204.218.144]
最後登入時間 :
2024-10-11 16:21:37
a015. 矩陣的翻轉 | From: [180.177.79.166] | 發表日期 : 2018-01-29 20:14

要重複輸入




 
ZeroJudge Forum