输出文件流
/
* 程序的版权和版本声明部分
* Copyright (c)2013, 烟台大学计算机学院学生
* All rightsreserved.
* 文件名称:
* 作者:袁静
* 完成日期: 2013年6月13日
版本号: v1.0
* 输入描述:无
* 问题描述
* 程序输出
#include<iostream>
#include <fstream>
#include<cstdlib>
using namespace std;
int main( )
{
int a[10];
ofstream outfile("f1.dat",ios::out);//定义文件流对象,打开磁盘文件"f1.dat"(只是一个流对象名)
if(!outfile) //如果打开失败,outfile返回0值
{
cerr<<"open error!"<<endl; //(当磁盘坏掉的时候 将无法打开文件)
exit(1);
}
cout<<"enter 10 integer numbers:"<<endl;
for(int i=0; i<10; i++) //向磁盘文件"f1.dat"输出数据
{
cin>>a[i];
outfile<<a[i]<<" ";
}
cout<<"The numbers have been writen to file. "<<endl; //输入的十个数将保存到指定的文件中
outfile.close(); //关闭磁盘文件"f1.dat"
return 0;
}
第十六周 阅读程序13.11 输出文件流
最新推荐文章于 2024-08-23 14:50:56 发布