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