问答详情
源自:1-2 C程序结构

搞不清楚,

#include        /*#include<stdio.h>*/

                /*int main()*/

{

      ("I love imooc!");    /*printf*/  

    return 0;

}

请问这个哪里有问题呀

提问者:慕侠3362153 2018-09-07 23:02

个回答

  • 加了椰子汁的冰
    2018-09-07 23:20:08

    兄弟你别乱用注释啊 //和/*是注释(里面的东西编译器是不会去运行的)

    #include<stdio.h>

    int main()

    {

          printf("I love imooc!"); 

         return 0;

    }

    这个应该是你想要的把