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

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

A. Fox And Snake

题目连接:

Description

Fox Ciel starts to learn programming. The first task is drawing a fox! However, that turns out to be too hard for a beginner, so she decides to draw a snake instead.

A snake is a pattern on a n by m table. Denote c-th cell of r-th row as (r, c). The tail of the snake is located at (1, 1), then it's body extends to (1, m), then goes down 2 rows to (3, m), then goes left to (3, 1) and so on.

Your task is to draw this snake for Fox Ciel: the empty cells should be represented as dot characters ('.') and the snake cells should be filled with number signs ('#').

Consider sample tests in order to understand the snake pattern.

Input

The only line contains two integers: n and m (3 ≤ n, m ≤ 50).

n is an odd number.

Output

Output n lines. Each line should contain a string consisting of m characters. Do not output spaces.

Sample Input

3 3

Sample Output

..#

Hint

题意

让你画出n*m的弯道,一直转弯的那种

题解:

水题,模拟一下就好了

代码

#include
using namespace std;int main(){ int n,m;scanf("%d%d",&n,&m); for(int i=1;i<=n;i++) { for(int j=1;j<=m;j++) { if(i%2==1) printf("#"); else if(i%4==2&&j==m) printf("#"); else if(i%4==0&&j==1) printf("#"); else printf("."); } printf("\n"); }}

转载地址:http://ifhno.baihongyu.com/

你可能感兴趣的文章
朝鲜黑掉韩国政府版 Word
查看>>
《现代体系结构上的UNIX系统:内核程序员的对称多处理和缓存技术(修订版)》——2.3 直接映射高速缓存...
查看>>
《Adobe After Effects CS5经典教程》——1.5 对合成图像作动画处理
查看>>
《Web前端工程师修炼之道(原书第4版)》——移动Web
查看>>
阿里合伙人邵晓锋:什么是创业者应该抵制的诱惑?
查看>>
LastPass 的开源替代品
查看>>
如何用开源经历为你的简历增加光彩
查看>>
《Windows Server 2012 Hyper-V虚拟化管理实践》一3.3 远程管理Hyper-V主机
查看>>
《c++语言导学》——1.3 Hello,World!
查看>>
租用服务器怎么免去后顾之忧?
查看>>
阿里云服务器创建历史功能介绍 快速创建云服务器
查看>>
开源人工智能技术将改变一切
查看>>
送17届学弟学妹的礼物——学生包、学生优惠合集
查看>>
OpenBSD 现已支持 USB 3.0
查看>>
《CUDA C编程权威指南》——2.4节设备管理
查看>>
《Arduino开发实战指南:机器人卷》一2.2 模拟I/O口的操作函数
查看>>
红帽专家谈 Ceph 与 Gluster 开源存储路线
查看>>
2015 上半年 JavaScript 使用统计数据
查看>>
《PaaS程序设计》一1.2 云能为创新做什么
查看>>
《OpenGL ES 3.x游戏开发(上卷)》一2.4 文件I/O
查看>>