题解 | #翻转金字塔图案#
翻转金字塔图案
https://www.nowcoder.com/practice/c4775776e4464537bfb6a5ba37c596c6
#include <stdio.h>
int main() {
int n;
int h;//记录行数
int a;//当前行的前面要打几个空格
int b;//当前行要输入几个"* "
while (scanf("%d", &n) != EOF)
{
for(h=1;h<=n;h++)
{
for(a=h-1;a>0;a--)
{
printf(" ");
}
for(b=n-h+1;b>0;b--)
{
printf("* ");
}
printf("\n");
}
}
return 0;
}