#21943: 不知道我錯在哪裡


10830069@mail.hpsh.tp.edu.tw (10510莊昀蓁)

學校 : 臺北市立和平高級中學
編號 : 113137
來源 : [203.72.60.247]
最後登入時間 :
2021-12-22 10:08:30
a015. 矩陣的翻轉 | From: [36.226.172.238] | 發表日期 : 2020-08-01 21:25

#include <iostream>

using namespace std;
int main()
{
int row,column,a[100][100];
while(cin>>row>>column)
{
for(int i=0;i<row;i++)
{
for(int j=0;j< column;j++)
{
cin>>a[i][j];
}//end for j
cout<<endl;
}//end for i
for(int j=0;j< column;j++)
{
for(int i=0;i<row;i++)
{
cout<<a[i][j];
}//end for i
cout<<endl;
}//end for j
}//end while
return 0;
}
 
#21964: Re:不知道我錯在哪裡


siskywalker1113@gmail.com (路過)

學校 : 中原大學
編號 : 125738
來源 : [116.89.131.45]
最後登入時間 :
2022-08-24 15:30:00
a015. 矩陣的翻轉 | From: [110.50.188.236] | 發表日期 : 2020-08-05 22:08

#include

using namespace std;
int main()
{
int row,column,a[100][100];
while(cin>>row>>column)
{
for(int i=0;i<row;i++)
{
for(int j=0;j< column;j++)
{
cin>>a[i][j];
}//end for j
cout<<endl;
}//end for i
for(int j=0;j< column;j++)
{
for(int i=0;i<row;i++)
{
cout<<a[i][j];
}//end for i
cout<<endl;
}//end for j
}//end while
return 0;
}

是不是輸出數字間沒有空白不給過

 
ZeroJudge Forum