C++ 如何将输入的内容输出到文本文件

2024-11-15 22:54:36
推荐回答(1个)
回答1:

你好,给桐知你举个例子吧!参局察消考下面的代码:

#include
#include 没简
using namespace std;

int main()
{
ofstream out("out.txt", ios::out);
char str[20];
if(cin>>str)
{
out< }
out.close();
return 0;
}