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