厚米们, 关于课后作业s1e3的打印飞机,为啥我这运行没有飞机
#include <stdio.h>int main()
{
printf("\n\
@\n\
/ \\n\
* *\n\
* *\n\
* *\n\
* * * * * *\n\
* * * * * * * *\n\
* *\n\
* *\n\
* * * *\n\
* * * * * *\n");
return 0;
} 空格和tab不能混用,你看上去是完整的,而编译器却不是这样认为
#include <stdio.h>
int main()
{
printf("\n\
@\n\
/ \\\n\
* *\n\
* *\n\
* *\n\
* * * * * *\n\
* * * * * * * *\n\
* * * * * * * * * *\n\
* *\n\
* *\n\
* * * *\n\
* * * * * *\n");
return 0;
}
感觉没必要去深究 大马强 发表于 2022-1-16 12:40
空格和tab不能混用,你看上去是完整的,而编译器却不是这样认为
感觉没必要去深究
谢谢哥
页:
[1]