ex27.cpp
资源名称:VC6.0.rar [点击查看]
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:0k
源码类别:
书籍源码
开发平台:
Visual C++
- #include <iostream.h> //包含基本输入输出流库
- #include <fstream.h> //包含文件流库
- void main( )
- {
- fstream file1; //定义一个fstream类的对象用于读文件
- file1.open("demo.txt",ios::in);//打开demo.txt文件
- if(!file1) //不能打开则显示信息并返回
- {
- cout<<"demo.txt文件不能打开!n";
- return;
- }
- char ch; //定义字符型变量ch
- while(!file1.eof( ))//如果不是文件的结尾就循环
- {
- file1.read(&ch,1); //从文件读入一个字符
- cout<<ch; //输出字符
- }
- file1.close( ); //关闭文件
- }