C++怎样把屏幕输入的数据写入文件?请写出代码

2024-12-31 07:06:29
推荐回答(3个)
回答1:

#include
#include
#include
using namespace std;
int main()
{
char str[1024];
ofstream file("out.txt");
cout<<"输入字符串:";
gets(str); //用cin的话会有空格截断的问题
file< file.close();
return 0;
}

回答2:

你得把你需要写进文件的数据保存到对应的变量中,举个例子:
#include
#include
#include

using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
ofstream file("test.txt");
string str="123456ABC";
int num=310;
file< file< file.close();
return 0;
}

这样就把
310
123456ABC
写到文件里面了

回答3:

#include
#include

using namespace std;

int main(int argc, char* argv[])
{
ofstream ofs("test.txt");
cout << "请随便输入点啥子:“ << endl;
copy(cin, ofs, 1024);
}