当前位置: 代码迷 >> 综合 >> [C++ Primer Plus]学习笔记
  详细解决方案

[C++ Primer Plus]学习笔记

热度:29   发布时间:2023-12-03 09:00:24.0

编写一个使用嵌套循环的程序,要求用户输入一个值,指出要显示多少行.然后,程序将显示相应行数的 *
输入实例:
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();
}
  相关解决方案