C++语法学习文件流操作文件重定向 #include <iostream>#include <fstream>#include <bits/stdc++.h>using namespace std; int main(){ string a,b; ifstream fin("ttt.txt");//输入流读取 ttt.txt文件 ofstream fout("out.txt");//输出流将读取内容写入 到out.txt文件中 while(fin>>a) fout<<a<<endl; fin.close();//结束后关闭流 fout.close(); return 0;}