题解 | #金字塔#
金字塔
https://ac.nowcoder.com/acm/problem/22203
注意这题没有 t
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
while(scanf("%d",&n)!=EOF){
cin>>n;
for(int i=1;i<=n;i++){
for(int j=1;j<=n-i;j++) putchar(' ');
for(int j=1;j<=1+(i-1)*2;j++) putchar('*');
putchar('\n');
}
}
return 0;
}