标签:接下来 查看 iostream problem 整数 current logs menu end
输入一个n行m列的矩阵A,输出它的转置AT。
3 3 1 2 3 4 5 6 7 8 9
1 4 7 2 5 8 3 6 9
1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 using namespace std; 5 int a[10001][10001]; 6 int main() 7 { 8 int n,m; 9 cin>>n>>m; 10 for(int i=1;i<=n;i++) 11 { 12 for(int j=1;j<=m;j++) 13 { 14 cin>>a[i][j]; 15 } 16 } 17 int j=1; 18 if(n==1) 19 { 20 for(int i=1;i<=n;i++) 21 { 22 for(int j=1;j<=m;j++) 23 { 24 cout<<a[i][j]; 25 cout<<endl; 26 } 27 } 28 return 0; 29 } 30 31 for(int i=1;i<=n;i++) 32 { 33 34 while(j<=m) 35 { 36 cout<<a[i][j]<<" "; 37 i++; 38 if(i==n) 39 { 40 cout<<a[i][j]<<" "; 41 cout<<endl; 42 j++; 43 i=1; 44 } 45 46 } 47 48 } 49 return 0; 50 }
标签:接下来 查看 iostream problem 整数 current logs menu end
原文地址:http://www.cnblogs.com/zwfymqz/p/6492584.html