因为你的程序没有暂停,所以执行完就自动关闭运行界面了, 在你的主程序结束之前(即return 0之前) 加上getchar(),就行了或者加上system("PAUSE“)。 望采纳。 #include using namespace std;int main(){ ....//你自己的代码 getchar(); return 0;}
在return 0;(即main结束前)前加getchar();或system("pause");
把代码贴出来