博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
找规律 Codeforces Round #290 (Div. 2) A. Fox And Snake
阅读量:6824 次
发布时间:2019-06-26

本文共 997 字,大约阅读时间需要 3 分钟。

 

1 /* 2     水题 3     找规律输出 4 */ 5 #include 
6 #include
7 #include
8 #include
9 #include
10 #include
11 #include
12 #include
13 #include
14 using namespace std;15 16 const int MAXN = 1e6 + 10;17 const int INF = 0x3f3f3f3f;18 19 int main(void)20 {21 //freopen ("A.in", "r", stdin);22 23 string s[4];24 int n, m;25 26 while (cin >> n >> m)27 {28 for (int i=1; i<=3; ++i)29 {30 s[i] = "";31 }32 for (int i=0; i<=m-1; ++i)33 {34 s[1] += '#';35 if (i != m - 1) s[2] += '.';36 else s[2] += '#';37 if (i == 0) s[3] += '#';38 else s[3] += '.';39 }40 41 int x = n / 4;42 43 for (int i=1; i<=x; ++i)44 {45 cout << s[1] << endl;46 cout << s[2] << endl;47 cout << s[1] << endl;48 cout << s[3] << endl;49 }50 51 int y = n % 4;52 53 for (int i=1; i<=y; ++i)54 {55 if (i == 3) cout << s[1] << endl;56 else cout << s[i] << endl;57 }58 }59 60 return 0;61 }

 

转载于:https://www.cnblogs.com/Running-Time/p/4366702.html

你可能感兴趣的文章
windows 2008 R2 64位系统杀毒软件
查看>>
我的友情链接
查看>>
netty学习笔记
查看>>
更改win7文件类型默认操作
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
Webgoat 笔记总结 Web Services
查看>>
Linux Mysql安装部署
查看>>
多线程 概述
查看>>
Nagios达到阈值时发不出告警邮件问题总结
查看>>
互联网公司应该要有的技术人员配置和开发事项清单
查看>>
Android开发中如何改变RadioButton背景图片和文字的相对位置
查看>>
如何给Linux (Fedora Ubuntu等)安装字体
查看>>
MySQL大小写敏感问题和命名规范
查看>>
java 获取时间 和 转换时间
查看>>
Redis主从复制
查看>>
mysql-5.6.26 主主复制
查看>>
SpringMVC权限管理
查看>>
ET120以太网环回器介绍
查看>>
ActiveMQ快速入门
查看>>