#include <stdio.h> int main() { int a; while (scanf("%d", &a) != EOF) { // 注意 while 处理多个 case // 64 位输出请用 printf("%lld") to char arr[a][a]; for(int i =0;i<a;i++) { for(int j=0;j<a;j++) { arr[i][j]=' '; } } for(int i =0;i<a;i++) { for(int j=0;j<a;j++) { if(i=...