在c++中使用while循环输出等腰三角形,要求使用iostearm头文件
时间: 2023-03-31 08:04:35 浏览: 121
基于循环嵌套以及函数打印一个等腰三角形
可以使用以下代码实现:
#include <iostream>
using namespace std;
int main() {
int n;
cout << "请输入等腰三角形的行数:";
cin >> n;
int i = 1;
while (i <= n) {
int j = 1;
while (j <= n - i) {
cout << " ";
j++;
}
j = 1;
while (j <= 2 * i - 1) {
cout << "*";
j++;
}
cout << endl;
i++;
}
return ;
}
阅读全文