#10668: 求解為何RE


o0931051998 (cian pan)

學校 : 國立雲林科技大學
編號 : 50993
來源 : [123.205.89.53]
最後登入時間 :
2017-06-18 23:51:12
a015. 矩陣的翻轉 | From: [123.205.89.212] | 發表日期 : 2016-01-30 11:06

#include <iostream>
using namespace std;
int main(void)
{
int M,N,row,col;
while(cin>>M>>N){
int *arrA=new int[M*N];
int *arrB=new int[M*N];
for(row=1;row<=M;row++)
{
for(col=1;col<=N;col++)
{
cin>>arrA[(row-1)*N+(col-1)];
}
}
for(row=1;row<=N;row++)
for(col=1;col<=N;col++)
arrB[(col-1)*N+(row-1)]=arrA[(row-1)+(col-1)*N]; 

for(row=1;row<=N;row++)
{
for(col=1;col<=M;col++)
{
cout<<arrB[(col-1)*N+(row-1)]<<" ";
}
cout<<endl;
}
}
return 0;

}

 

 
ZeroJudge Forum