输出等腰三角形字符c++
时间: 2023-07-04 14:30:13 浏览: 228
以下是输出等腰三角形的C++代码:
```
#include <iostream>
using namespace std;
int main() {
int n;
char c;
cout << "请输入要输出的行数:";
cin >> n;
cout << "请输入要输出的字符:";
cin >> c;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n - i; j++) {
cout << " ";
}
for (int j = 1; j <= 2 * i - 1; j++) {
cout << c;
}
cout << endl;
}
return 0;
}
```
其中,n为要输出的行数,c为要输出的字符。程序会先让用户输入n和c,然后使用两个嵌套的for循环来输出等腰三角形。
相关问题
输出三角形字符阵列c++
在C++中,你可以使用循环结构如for或while来创建三角形的字符数组输出。这里有一个简单的例子,展示如何打印出一个向上的等腰三角形:
```cpp
#include <iostream>
using namespace std;
void printTriangle(int n) {
for (int i = 0; i < n; i++) { // 遍历每一行
// 打印空格
for (int spaces = n - 1 - i; spaces > 0; spaces--) {
cout << " ";
}
// 打印星号
for (int stars = 2 * i + 1; stars > 0; stars--) {
cout << "*";
}
cout << endl;
}
}
int main() {
int size; // 输入三角形大小
cout << "请输入三角形的边长:";
cin >> size;
printTriangle(size);
return 0;
}
```
当你运行这个程序并输入一个数字,它会打印出相应大小的三角形,例如:
```
请输入三角形的边长:5
*
***
*****
*******
```
c++输出等腰杨辉三角形
这是一个C语言实现等腰杨辉三角形输出的代码:
```c
#include <stdio.h>
int main() {
int rows, coef = 1, space, i, j;
printf("请输入杨辉三角的行数:");
scanf("%d", &rows);
for (i = 0; i < rows; i++) {
for (space = 1; space <= rows - i; space++) {
printf(" ");
}
for (j = 0; j <= i; j++) {
if (j == 0 || i == 0)
coef = 1;
else
coef = coef * (i - j + 1) / j;
printf("%4d", coef);
}
printf("\n");
}
return 0;
}
```
这段代码会根据用户输入的行数,输出相应行数的等腰杨辉三角形。其中,每个数字用4个字符的宽度打印,并在数字之间留有空格。这样可以使输出的杨辉三角形更加整齐美观。
阅读全文