问题及代码:
<pre name="code" class="cpp">/*copyright(c)2016.烟台大学计算机学院
* All rights reserved,
* 文件名称:text.Cpp
* 作者:吴敬超
* 完成日期:2016年6月13日
* 版本号:codeblock
*
* 问题描述:
* 输入描述:
* 程序输出: 输出结果
*/
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
long pos;
ofstream outfile;
outfile.open("text.txt");
outfile.write("This is an apple",16);
pos=outfile.tellp();
outfile.seekp (pos-7);
outfile.write("sam",4);
outfile.close();
return 0;
}
查看文件: