慕侠3362153
2018-09-07 23:02
#include /*#include<stdio.h>*/
/*int main()*/
{
("I love imooc!"); /*printf*/
return 0;
}
请问这个哪里有问题呀
兄弟你别乱用注释啊 //和/*是注释(里面的东西编译器是不会去运行的)
#include<stdio.h>
int main()
{
printf("I love imooc!");
return 0;
}
这个应该是你想要的把
C语言入门
926866 学习 · 21014 问题
相似问题