编写一个使用嵌套循环的程序,要求用户输入一个值,指出要显示多少行.然后,程序将显示相应行数的 *
输入实例:
Enter number of rows : 5
. . . . *
. . . * *
. . * * *
. * * * *
#include <iostream>
int main()
{using namespace std;int row;cout << "Enter number of rows:";cin >> row;for (int i = 0; i<row; i++){for (int j = 0; j<row; j++){if (j<row - i - 1)cout << ".";elsecout << "*";}cout << endl;}cin.get();
}