问答详情
源自:1-5 良好习惯之规范

hello.c运行失败

#include <stdio.h>

int main()

{

    printf("你是我的小呀小苹果儿\n");

    printf("怎么爱你都不嫌多\n");

    printf("红红的小脸儿温暖我的心窝\n");

    printf("点亮我生命的火 火火火火\n");

    return 0;

}


提问者:qq_慕娘8176554 2018-12-21 21:15

个回答

  • qq_慕的地7198533
    2020-03-28 06:34:10

    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");
         ^~~~~~

  • 慕用7022031
    2018-12-21 22:27:21

    你的分号错了,换成英文打字法,出入分号。就行。


  • 慕用7022031
    2018-12-21 22:24:37

    #include <stdio.h>

    int main()

    {

        printf("你是我的小呀小苹果儿\n");

        printf("怎么爱你都不嫌多\n");

        printf("红红的小脸儿温暖我的心窝\n");

        printf("点亮我生命的火 火火火火\n");

                return 0;

        

    }


  • 慕用7022031
    2018-12-21 22:22:30

    #include <stdio.h>


    int main()


    {


        printf("你是我的小呀小苹果儿");


        printf("怎么爱你都不嫌多");


        printf("红红的小脸儿温暖我的心窝");


        printf("点亮我生命的火 火火火火");


        return 0;


    }