/*
*Copyright (c) 2016,烟台大学计算机学院
*All rights reserved.
*文件名称 :
*作 者 : 刘云
*完成日期 : 2016年6月15号
*版 本 号 : v6.0
*
*问题描述 : 阅读程序
*输入描述 :无
*程序输出 :
*/
#include<iostream>
#include<fstream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
ofstream outfile("f1.dat",ios::out|ios::binary);
if(!outfile)
{
cerr<<"open error!"<<endl;
exit(1);
}
cin>>a;
outfile.write((char*)&a,sizeof(int));
outfile.close();
return 0;
}
第16周阅读程序——2(2)
最新推荐文章于 2024-08-21 17:24:43 发布