学C语言时基本结构就是main() //这里主函数没有定义返回值。C语言默认为int {}但c++不会默认为int 你要么有定义 要么 为viod int main(){return 0;}或者 void main(){}