文章

117

粉丝

69

获赞

829

访问

90.4k

头像
矩阵翻转 题解:
P1134 西安交通大学机试题
发布于2024年6月16日 19:17
阅读数 677

  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. const int N = 1010;
  4. int a[N][N];
  5. int n;
  6. int main()
  7. {
  8. cin >> n;
  9. for(int i = 1; i <= n; i ++)
  10. for(int j = 1; j <= n; j ++)
  11. cin >> a[i][j];
  12. int cnt = 0;
  13. for(int i = n; i >= 1; i --)
  14. for(int j = 1; j <= n; j ++)
  15. {
  16. cnt ++;
  17. cout << a[i][j] << " ";
  18. if(cnt % n == 0)
  19. cout << endl;
  20. }
  21. return 0;
  22. }

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发