如题所述
20177\\Main.cc:9: error: `main' must return `int'这是什么意思啊主函数要定义成返回值为整数。把你的主函数改为:int main(){ ...;return 0;} 就行了。