CHAPTER2-11.cpp
上传用户:fjc899
上传日期:2007-07-03
资源大小:187k
文件大小:1k
源码类别:

STL

开发平台:

C/C++

  1. //文件名:CHAPTER2-11.cpp
  2.  #include<iostream.h>
  3.  #include<stdlib.h>
  4.  #include<fstream.h>
  5.  void main(void)
  6.  {
  7.      ifstream f1("wr1.dat", ios::in | ios::nocreate);  
  8.     //定义输入文件流,并打开相应文件,若打开失败则f1带回0值
  9.     if (!f1) 
  10.     {  //当f1打开失败时进行错误处理
  11.       cerr<<"wr1.dat file not open!"<<endl;
  12.       exit(1);
  13.     }
  14.     int x;
  15.     while(f1>>x) //依次从文件中输入整数到x,当读到的是文件结束符时条件表达式的值为0
  16.        cout<<x<<' ';
  17.     cout<<endl;
  18.     f1.close();  //关闭f1所对应的文件
  19.   }