题解 | X形图案
#include <stdio.h>
int main() {
int n=0;
while (scanf("%d", &n) != EOF) { // 注意 while 处理多个 case
// 64 位输出请用 printf("%lld") to
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
if(j==i||i==n-j-1)
{
printf("*");
}
else
{
printf(" ");
}
}
printf("\n");
}
}
return 0;
}

查看19道真题和解析