int main()
{
/*在双引号中间输入Hello World*/
printf(" ");
return 0;
最后少一个 }
用什么软件学习
int main() //定义一个主函数
printf(" "); //printf 输出
return 0; //返回值0
66666