题解 | #字符圣诞树#
字符圣诞树
http://www.nowcoder.com/practice/0fae60c3b5c64699b7c0f031c2187dde
#include<stdio.h>
signed main() {
char s;scanf(" %c",&s);
for(int i=1;i<6;i++) {
for(int j=5-i;j>0;j--) putchar(' ');
for(int j=0;j<i;j++) printf("%c ",s);
putchar('\n');
}
return 0;
}