1. 程式人生 > >《C++ Prime Plus》第五章,10

《C++ Prime Plus》第五章,10

編寫一個使用巢狀迴圈的程式,要求使用者輸入一個值,指出要顯示多少行。然後,程式將顯示相應的行數的星號,其中 第一行包括一個星號,第二行包括兩個星號,依次類推。每一行包含的字元數等於使用者指定的行數,在星號不夠的情況下,在星號 前面加上句點。該程式的執行情況如下:

#include <iostream>
int main()
{
	using namespace std;
	int number;
	cout << "Enter number of row: ";
	cin >> number;
	//char ch[number][number];
	for (int i = 0;i < number;i++)
	{
		for(int j = number-1;j > i;j--)
		{
			cout << '.';
		}
		for(int k = 0;k <= i;k++)
		{
			cout << '*';
		}
		cout << endl;
	}
	return 0;
}