码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces 523A - Rotate, Flip and Zoom 手速题

时间:2015-03-28 20:15:34      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

 

 1 #include "bits/stdc++.h"
 2 using namespace std;
 3 char mat[110][110];
 4 int m, n;
 5 
 6 int main()
 7 {
 8     scanf("%d%d", &m, &n);
 9     int i, j;
10     for(i = 0; i <= n - 1; ++i)
11         scanf("%s", mat[i]);
12     for(i = 0; i <= (m << 1) - 1; ++i) {
13         for(j = 0; j <= (n << 1) - 1; ++j) {
14             putchar(mat[j >> 1][i >> 1]);
15         }
16         puts("");
17     }
18 }

 

Codeforces 523A - Rotate, Flip and Zoom 手速题

标签:

原文地址:http://www.cnblogs.com/AC-Phoenix/p/4374666.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!