我正在尝试一个程序并使用 GCC 编译和运行它,但它会抛出无法在 dos 模式下运行的错误。这是我的代码
#include<iostream>
#include<fstream>
using namespace std;
int main(int argc, char *argv[])
{
ifstream is;
is.open("text1.txt",ios::binary);
ofstream outfile;
outfile.open("text2.txt",ios::binary);
char ch;
while (is.get(ch))
{
outfile.put(ch);
cout << ch; //this shows
}
is.close();
outfile.close();
getchar();
return 0;
}
但是这段代码在 Visual Studio 中运行良好。有什么建议么?