找完规律之后 注意如果宽度和高度输入0的话 那么肯定输出任何东西的
所以要排除0的特殊情况
参考代码:
#include<iostream> using namespace std; int main() { //freopen("data.in.txt","r",stdin); //freopen("data.out.txt","w",stdout); int h,w; while(cin>>h>>w) { if(h==0||w==0) { return 0; } for(int i=1;i<=2*h+1;i++) { for(int j=1;j<=2*w+1;j++) { if(i%2==1) { if(j%2==1) { cout<<"+"; } else { cout<<"-"; } } else if(i%2==0) { if(j%2==1) cout<<"|"; else cout<<" "; } } cout<<endl; } } return 0; }
0.0分
1 人评分
A+B for Input-Output Practice (VI) (C语言代码)浏览:602 |
C语言程序设计教程(第三版)课后习题8.9 (C++代码)浏览:919 |
C语言程序设计教程(第三版)课后习题8.2 (Java代码)浏览:2287 |
母牛的故事 (C语言代码)浏览:992 |
WU-蓝桥杯算法提高VIP-交换Easy (C++代码)浏览:1186 |
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码)浏览:760 |
杨辉三角 (C语言代码)浏览:504 |
模拟计算器 (C语言代码)浏览:2366 |
企业奖金发放 (C语言代码)浏览:2459 |
简单的a+b (C语言代码)浏览:600 |