CCF_201503-1_图像旋转
Posted 冷暖知不知
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CCF_201503-1_图像旋转相关的知识,希望对你有一定的参考价值。
水。
#include<iostream> #include<cstdio> using namespace std; int a[1005][1005]; int main() { int n,m; cin >> n >> m; for(int i = 1;i <= n;i++) { for(int j = 1;j <= m;j++) cin >> a[i][j]; } for(int j = m;j >= 1;j--) { for(int i = 1;i <= n;i++) cout << a[i][j] << ‘ ‘; cout << endl; } return 0; }
以上是关于CCF_201503-1_图像旋转的主要内容,如果未能解决你的问题,请参考以下文章