解题思路:这题有点恶心,需要判断输入大于0,不看别人的题解我还没发现
注意事项:
参考代码:
#include<bits/stdc++.h>
using namespace std;
int h, w;
int main() {
ios::sync_with_stdio(false);
cin >> h >> w;
if (h > 0 && w > 0) {
for (int i = 1; i <= 2 * h + 1; i++)
{
for (int j = 1; j <= 2 * w + 1; j++)
{
if (i % 2) {
if (j % 2)cout << "+";
else cout << "-";
}
else
{
if (j % 2)cout << "|";
else cout << " ";
}
}
cout << endl;
}
}
return 0;
}
0.0分
2 人评分
点我有惊喜!你懂得!浏览:2754 |
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:489 |
C语言考试练习题_一元二次方程 (C语言代码)浏览:777 |
字符串输入输出函数 (Java代码)浏览:1500 |
十->二进制转换 (C语言代码)浏览:1332 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:672 |
数组输出 (C语言代码)错误???浏览:604 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:387 |
【排队买票】 (C语言代码)浏览:945 |
【简单计算】 (C语言代码)浏览:642 |