打印空心三角形
空心三角形图案
http://www.nowcoder.com/questionTerminal/2ccc5fca423e47f0b622fe6f151cfab4
include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
while(cin >> n)
{
for(int i = 0;i < n; ++i)
{
for(int j = 0; j < n; ++j)
{
if(i == n - 1 || j == 0 || i == j )
cout << "* ";
else
cout << " ";
}
cout << endl;
}
}
return 0;