输出以下图案: * *** ***** ******* ***** *** *
时间: 2024-05-15 12:10:52 浏览: 150
c代码-编写程序输出下列图形: * *** ***** *******
这是一个常见的菱形图案,可以使用循环嵌套打印输出,具体实现如下(使用C++语言为例):
```
#include <iostream>
using namespace std;
int main()
{
int n = 4; // 菱形高度
for (int i = 0; i < n; i++) // 打印上半部分
{
for (int j = 0; j < n - i - 1; j++)
cout << " "; // 输出空格
for (int j = 0; j < 2 * i + 1; j++)
cout << "*"; // 输出星号
cout << endl;
}
for (int i = n - 2; i >= 0; i--) // 打印下半部分
{
for (int j = 0; j < n - i - 1; j++)
cout << " "; // 输出空格
for (int j = 0; j < 2 * i + 1; j++)
cout << "*"; // 输出星号
cout << endl;
}
return 0;
}
```
输出结果为:
```
*
***
*****
*******
*****
***
*
```
阅读全文