qq_慕娘8176554
2018-12-21 21:15
#include <stdio.h>
int main()
{
printf("你是我的小呀小苹果儿\n");
printf("怎么爱你都不嫌多\n");
printf("红红的小脸儿温暖我的心窝\n");
printf("点亮我生命的火 火火火火\n");
return 0;
}
hello.c: In function 'main':
hello.c:6:53: error: stray '\357' in program
printf("红红的小脸儿温暖我的心窝\n");
^
hello.c:6:54: error: stray '\274' in program
printf("红红的小脸儿温暖我的心窝\n");
^
hello.c:6:55: error: stray '\233' in program
printf("红红的小脸儿温暖我的心窝\n");
^
hello.c:7:5: error: expected ';' before 'printf'
printf("点亮我生命的火 火火火火\n");
^~~~~~
你的分号错了,换成英文打字法,出入分号。就行。
#include <stdio.h>
int main()
{
printf("你是我的小呀小苹果儿\n");
printf("怎么爱你都不嫌多\n");
printf("红红的小脸儿温暖我的心窝\n");
printf("点亮我生命的火 火火火火\n");
return 0;
}
#include <stdio.h>
int main()
{
printf("你是我的小呀小苹果儿");
printf("怎么爱你都不嫌多");
printf("红红的小脸儿温暖我的心窝");
printf("点亮我生命的火 火火火火");
return 0;
}
C语言入门
926020 学习 · 20793 问题
相似问题