目录
  1. 1. C++语法学习
    1. 1.1. 文件流操作
C++语法学习03

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;
}
文章作者: Jachie Xie
文章链接: https://xjc5772.github.io/2020-01/30/%E5%AD%A6%E4%B9%A0/C++study03/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 XJC&Blog
打赏
  • 微信
  • 支付宝

评论