字符形状输出
回到一级知识点,用给定字符按指定形状输出。
BCQM3044
题目要求
描述
给定一个字符,用它构造一个对角线长5个字符,倾斜放置的菱形。
输入
输入只有一行, 包含一个字符。
输出
该字符构成的菱形。
输入样例
输出样例
*
***
*****
***
*
题目分析
与3041一样,定义char
类型变量接收字符输入,然后直接构造输出格式输出即可。
代码参考
#include <iostream>
using namespace std;
int main() {
char a;
cin >> a;
cout << " " << " " << a << endl;
cout << " " << a << a << a << endl;
cout << a << a << a << a << a << endl;
cout << " " << a << a << a << endl;
cout << " " << " " << a;
return 0;
}
{% include custom/custom-post-content-footer.md %}
所有代码已上传至Github:https://github.com/lihongzheshuai/yummy-code
“luogu-”系列题目可在 洛谷题库 在线评测。
“bcqm-”系列题目可在 编程启蒙题库 在线评测。
GESP/CSP 认证学习微信公众号

Last updated on