需要返回值
windows 下的程序因该使用 int main(void){ return 0;}
void main()这种无返回值得方式已经不适合现在所使用的操作系统了。
我个人还是喜欢这种标准写法:int main(){ ..... return 0;}