题解 | #翻转金字塔图案#
翻转金字塔图案
http://www.nowcoder.com/practice/c4775776e4464537bfb6a5ba37c596c6
// 要清楚输出的先后顺序,先 空格 后 ※
#include<iostream>
using namespace std;int main()
{
int n, i, j;
while (cin >> n)
{
for (i = 0; i < n; i++)
{
for (j = 0; j < n; j++)
{
if (j < i)
cout << " ";
else
cout << "* ";
}
cout << endl;
}
}
system("pause");
return 0;
}