就明白的嵌套for循環我寫了一個程序,它需要一個輸入工作,並顯示一個金字塔高達像這樣的輸入值的方式:嵌套「for」循環C++
1
22
333
4444
它顯示只是高度的金字塔,但它沒有顯示在第二個循環的書面部分。
下面是代碼(修改後,但所需的結果目前還沒有)
#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;
}
您還沒有初始化最大 – Jack
在請求幫助之前,請花時間正確縮進您的代碼。 – meagar
@傑克這是一個有效的答案。將它張貼爲一個。 – Maroun