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

就是从键盘任意输入任意内容(字符、数字、空格等都可以)然后以回车结束,这些所有的字符输出保存到文本里。

月关宝盒
浏览 1679回答 3
3回答

眼眸繁星

将内容输出到文本中要用ofstream这个类来实现。具体步骤如下。ofstream mycout("temp.txt");//先定义一个ofstream类对象mycout,括号里面的"temp.txt"是我们用来保存输出数据的txt文件名。这里要注意的是我们的"temp.txt"用的是相对路径,你也可以写绝对路径。mycout<<"hello"<<endl;//这样就把"hello"输出到temp.txt文件中了mycout.close();//最后要记得关闭打开的文件(这里打开的就是temp.txt文件)现在给你提供一个完整的程序来实现你说的将输入的内容输出到文件#include <iostream>#inlcude <fstream>//ofstream类的头文件using namespace std;int main(){int n;cin>>n;ofstream mycout("temp.txt");mycout<<n<<endl;mycout.close();return 0;}

jeck猫

1234567891011#include<iostream>#include<fstream>using&nbsp;namespace&nbsp;std;int&nbsp;main(){&nbsp;&nbsp;&nbsp;ofstream&nbsp;out("e:/file.txt");&nbsp;&nbsp;//保存到e盘的文件file.txt中&nbsp;&nbsp;&nbsp;char&nbsp;buffer[100];&nbsp;&nbsp;&nbsp;gets(buffer);&nbsp;&nbsp;&nbsp;out<<buffer;&nbsp;&nbsp;&nbsp;return&nbsp;0;}&nbsp;

浮云间

你好,给你举个例子吧!参考下面的代码:#include<fstream>#include <iostream>using namespace std;int main(){ofstream out("out.txt",&nbsp;ios::out);char str[20];if(cin>>str){out<<str<<endl;}out.close();return 0;}
打开App,查看更多内容
随时随地看视频慕课网APP