c++打印以下图案: ****** ****** ****** ****** ******
时间: 2023-11-20 11:07:09 浏览: 69
以下是C++代码实现该图案的方法:
```
#include <iostream>
using namespace std;
int main() {
for (int i = 0; i < 5; i++) {
for (int j = 0; j < i; j++) {
cout << " ";
}
for (int k = 0; k < 6 - i; k++) {
cout << "*";
}
cout << endl;
}
return 0;
}
```
相关问题
编写程序打印如下图案: **1** **22 ** **333** **4444** **55555**
以下是编写程序打印如下图案的示例:
```c
#include <stdio.h>
int main() {
int i, j, c;
for (i = 1; i <= 5; i++) {
for (j = 1; j <= 5 - i; j++) {
printf(" ");
}
for (c = 1; c <= i; c++) {
printf("%d", i);
}
printf("\n");
}
return 0;
}
```
输出以下图案: * *** ***** ******* ***** *** *
这是一个常见的菱形图案,可以使用循环嵌套打印输出,具体实现如下(使用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;
}
```
输出结果为:
```
*
***
*****
*******
*****
***
*
```
阅读全文