70,022
社区成员




#include "stdio.h"#include <stdio.h>
#include <stdlib.h>
void main() {
int i,j;
system("chcp 437 >NUL");
for(i=0;i<8;i++) {
for(j=0;j<8;j++) {
if((i+j)%2==0) {
printf("%c%c",219,219);
} else {
printf(" ");
}
}
printf("\n");
}
system("pause");
}
SetConsoleOutputCP(437)