题解 | #X形图案#
X形图案
http://www.nowcoder.com/practice/83d6afe3018e44539c51265165806ee4
include<stdio.h>
int main()
{
int a=0;
while(~scanf("%d",&a))
{
for(int b=0;b<a;b++)
{
for(int c=0;c<a;c++)
{
if(b==c||b+c==a-1)
printf("*");
else
printf(" ");
}printf("\n");
}
}return 0;
}