下载码来一个
太明显了printf()字符串你要写在一行,回车分行需要进行拼接,你的缺少双引号
供参考对照:
#include <stdio.h>
int main()
{
printf("***********************************************\n"
" very good! \n"
"***********************************************\n");
return 0;
}
多行需要加 \符号,如下:
#include <stdio.h>
int main()
{
printf("*************** \
Very good! \
****************");
return 0;
}