例如我们在c ++中创建了如何在此文件中写入内容然后在屏幕上输出的文件?
答案 0 :(得分:1)
阅读this,然后回来询问您是否有更具体的问题,谢谢。
答案 1 :(得分:0)
取自here。
写作:
#include <iostream>
#include <fstream>
using namespace std;
int main () {
ofstream myfile;
myfile.open ("example.txt");
myfile << "Writing this to a file.\n";
myfile.close();
return 0;
}
读:
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main () {
string line;
ifstream myfile("example.txt");
while(getline(myfile,line)) {
cout << line << endl;
}
myfile.close();
return 0;
}
你应该真的使用谷歌。