// 菱形分为两部分,
#include<iostream>
using namespace std;int main()
{
int n, i, j;
while (cin >> n)
{
// 上面 n+1 行,
for (i = 0; i <= n; i++){
for (j = 0; j <= n; j++)
{
if (j <n-i)
cout << " ";
else
cout << "* ";
}
cout << endl;
}
// 下面 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;
}