第十六周上机实践项目3(2):阅读程序

来源:互联网 发布:打车软件数据库设计 编辑:程序博客网 时间:2024/04/27 23:43
/**Copyright(c) 2016.烟台大学计算机与控制工程学院*ALL rights  reserved.*文件名称:main.cpp*作者:赵子琳*完成日期:2016年6月20日*问题描述:阅读下面的程序,指出其功能,体会seekg()、tellg()等函数的功能及其用法*/#include <fstream>using namespace std;int main (){    long pos;    ofstream outfile;    outfile.open ("test.txt");    outfile.write ("This is an apple",16);    pos=outfile.tellp();    outfile.seekp (pos-7);    outfile.write (" sam",4);    outfile.close();    return 0;}

0 0
原创粉丝点击