题解 | #反斜线形图案#
反斜线形图案
http://www.nowcoder.com/practice/7b066963c4eb4d188becd18c37dfe22d
#include <stdio.h>
int main()
{
int n;
while(scanf("%d", &n) != -1)
{
for (int i = 0; i < n; i++)
{
for(int j = 0; j < i; j++)
{
printf(" ");
}
printf("*\n");
}
}
return 0;
}