无法打印白色块
Dev-C++, 打印 %c,219 不出白块的原因可能是什么啊(没法发图) 没法发图,也没代码,问个毛 请发你的代码,图可以上传到这里:https://imgchr.com/ yexing 发表于 2020-3-29 13:00请发你的代码,图可以上传到这里:https://imgchr.com/
int main(void)
{
int i, j;
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");
}
return 0;
} yexing 发表于 2020-3-29 13:00
请发你的代码,图可以上传到这里:https://imgchr.com/
https://imgchr.com/i/GVqgIO
页:
[1]