题解 | #金字塔图案#
金字塔图案
http://www.nowcoder.com/practice/d84e8339f9444bb6b29bd3f227c8e538
#include<stdio.h> int main() { int n,s; while(scanf("%d",&n)!=EOF) { s=n; for(int o=1;o<=n;o++) { for(int m=s;m>1;m--) printf(" "); for(int i=1;i<=o;i++) printf("* "); printf("\n"); s--; } } }