在理解嵌套 for 循环的工作的过程中,我编写了一个程序,该程序接受一个输入并显示一个金字塔,直到该输入值,如下所示:
1
22
333
4444
它只显示金字塔的高度,但不显示第二个 for 循环中的书面部分。
这是代码(修改后但还没有所需的结果)
#include <iostream>
using namespace std;
int main(void)
{
int num;
cout << "Enter the number of pyramid" << endl ;
cin >> num ;
for (int i = 0; i < num ; i++)
{
int max;
for (int j = 0 ; j <= max ; j++)
{
cout << j ;
}
cout << endl ;
max++ ;
}
system("PAUSE");
return 0;
}