/*
* 程序的版权和版本声明部分
* Copyright (c)2013, 烟台大学计算机学院学生
* All rightsreserved.
* 文件名称: 数据流.cpp
* 作 者:李巧丽
* 完成日期:2013 年06月14日
* 版本号: v1.0
* 对任务及求解方法的描述部分:略
* 输入描述:略
* 问题描述:略
*/
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream readFile;
ofstream writeFile;
char ch;
readFile.open("a.txt", ios::in);
writeFile.open("b.txt", ios::out);
while (readFile.get(ch))
writeFile.put(ch);
readFile.close();
writeFile.close();
cout << "Finish!" << endl;
return 0;
}
运行结果: