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

Codeforces Round #290 (Div. 2)

时间:2015-03-28 01:03:10      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:

A题:

简单的模拟。

贴样例就知道了。

input
3 3
output
###
..#
###
input
3 4
output
####
...#
####
input
5 3
output
###
..#
###
#..
###
input
9 9
output
#########
........#
#########
#........
#########
........#
#########
#........
#########

技术分享
 1 #include<cstdio>
 2 int main()
 3 {
 4     int n,m;
 5     while(scanf("%d%d",&n,&m)!=EOF){
 6         for(int i=1;i<=n;i++){
 7             if(i%4==1||i%4==3){
 8                 for(int j=1;j<=m;j++)
 9                     printf("#");
10                 printf("\n");
11             }
12             else if(i%4){
13                 for(int j=1;j<m;j++)
14                     printf(".");
15                 printf("#\n");
16             }
17             else{
18                 printf("#");
19                 for(int j=2;j<=m;j++)
20                     printf(".");
21                 printf("\n");
22             }
23         }
24     }
25     return 0;
26 }
View Code

 



Codeforces Round #290 (Div. 2)

标签:

原文地址:http://www.cnblogs.com/-maybe/p/4373409.html

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