ex27.cpp
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <iostream.h> //包含基本输入输出流库
  2. #include <fstream.h> //包含文件流库
  3. void main( )
  4. {
  5. fstream file1; //定义一个fstream类的对象用于读文件
  6. file1.open("demo.txt",ios::in);//打开demo.txt文件
  7. if(!file1) //不能打开则显示信息并返回
  8. {
  9. cout<<"demo.txt文件不能打开!n";
  10. return;
  11. }
  12. char ch; //定义字符型变量ch
  13. while(!file1.eof( ))//如果不是文件的结尾就循环
  14. {
  15. file1.read(&ch,1); //从文件读入一个字符
  16. cout<<ch; //输出字符
  17. }
  18. file1.close( ); //关闭文件
  19. }