[求助]dev c++的运行窗口问题
我们学校开可c++课程
比较浅显
我用dev c++编程序时候
在运行窗口输入变量时
一按回车运行窗口就关掉了
这个问题怎么解决?
#include <iostream>
#include <fstream>
#include <cstdlib>
using namespace std;
class Test
{
public:
Test()
{
cout<<\"make constructor\n\";
}
~Test()
{
ofstream fout(\"test.txt\");
fout<<\"make destructor\";
fout.close();
}
};
int main()
{
Test t;
system(\"pause\");
return 0;
}