#include<bits/stdc++.h>
#define int long long
#define PII pair<int,int>
using namespace std;
const int N = 2e5+10;
signed main()
{
std::ios::sync_with_stdio(false);
std::cin.tie(NULL);
int n;
while(cin>>n){
//输出上金三角的元素
for(int i=1;i<=n;i++)//表行数
{
//输出列的元素
for(int j=1;j<=n-i;j++) cout<<" ";
for(int j=1;j<=2*i-1;j++) cout<<"*";
// 可有可无 for(int j=1;j<=n-i;j++) cout<<" ";
cout<<endl;
}
//输出下金三角列的元素
for(int i=n-1;i>=1;i--)
{
for(int j=n-i;j>=1;j--) cout<<" ";
for(int j=2*i-1;j>=1;j--) cout<<"*";
// 可有可无 for(int j=n-i;j>=1;j--) cout<<" ";
cout<<endl;
}
}
return 0;
}
注意:
- 记住输出每行星号和空格的公式,要每行每行的输出空格
- 下金字塔的输出,最简单的方式是直接倒过来,不要想复杂。