第十六周实践项目-阅读程序(3)

问题及代码:

/*
 *Copyright(c)2016,烟台大学计算机与控制工程学院
 *All right reserved.
 *文件名称:77.cpp
 *作    者:董凯琦
 *完成日期:2016年6月14日
 *版 本 号:v1.0
 *
 *问题描述:

 *输入描述:
 *程序输出:
 */
#include 
#include 
#include
using namespace std;
int main()
{
    ifstream readFile;
    ofstream writeFile;
    char ch[100];
    readFile.open("a.txt", ios::in);
    writeFile.open("b.txt", ios::out);
    while (!readFile.eof())
    {
        readFile.getline(ch,100,'\n');
        writeFile.write(ch,strlen(ch));
        writeFile.write("\n",1);
    }
    readFile.close();
    writeFile.close();
    cout << "Finish!" << endl;
    return 0;
}

运行结果:

第十六周实践项目-阅读程序(3)_第1张图片

你可能感兴趣的:(第十六周实践项目-阅读程序(3))