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