博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
codeforces A. Bayan Bus(简单模拟)
阅读量:6037 次
发布时间:2019-06-20

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

1 #include 
2 #include
3 #include
4 #include
5 #include
6 #include
7 #define N 20000 8 using namespace std; 9 10 int num[5][15];11 12 int main()13 {14 int n;15 cin>>n;16 for(int j=1; j<=11 && n; ++j){17 for(int i=1; i<=4; ++i){18 if(j>1 && i==3) continue;19 --n;20 num[i][j] = 1;21 if(n == 0) break;22 }23 } 24 25 printf("+------------------------+\n");26 for(int i = 1; i<=4; ++i){27 printf("|");28 for(int j=1; j<=11; ++j){29 if(num[i][j]) printf("O.");30 else{31 if( i != 3 || (i==3 && j==1))32 printf("#.");33 else printf("..");34 }35 }36 if(i == 1) printf("|D|)\n");37 if(i==2) printf("|.|\n");38 if(i==3) printf("..|\n");39 if(i==4) printf("|.|)\n");40 }41 printf("+------------------------+\n");42 return 0;43 }

 

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

你可能感兴趣的文章
footer固定在页面底部的实现方法总结
查看>>
nginx上传文件大小
查看>>
数字通信原理笔记(一)---概述
查看>>
HDU 2243 考研路茫茫——单词情结(自动机)
查看>>
Dubbo OPS工具——dubbo-admin & dubbo-monitor
查看>>
Dungeon Master ZOJ 1940【优先队列+广搜】
查看>>
其它 Helper
查看>>
监控利器Prometheus初探
查看>>
foreach遍历打印表格
查看>>
Oracle笔记(中) 多表查询
查看>>
Delphi 中的 XMLDocument 类详解(5) - 获取元素内容
查看>>
差异分析定位Ring 3保护模块
查看>>
2013年7月12日“修复 Migration 测试发现的 Bug”
查看>>
vim文本编辑器详解
查看>>
学习vue中遇到的报错,特此记录下来
查看>>
CentOS7 编译安装 Mariadb
查看>>
32位系统和64位系统的选择
查看>>
01配置管理过程指南
查看>>
jstl格式化时间
查看>>
一则关于运算符的小例
查看>>