码迷,mamicode.com
首页 > 编程语言 > 详细

C++--在屏幕上显示指定的文本文件的内容

时间:2020-04-23 00:52:45      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:names   namespace   open   stream   std   ios   cin   pen   文本   

#include<iostream>
#include<fstream>
using namespace std;
int main()
{

ifstream ifle;
char fn[20],ch;
cout<<"输入文件名:";
cin>>fn;
ifle.open(fn);
if(!ifle)
{
cout<<fn<<"文件不能打开"<<endl;
return 0;
}
while((ch = ifle.get())!=EOF)
cout<<ch;
cout<<endl;
ifle.close();
return 1;
}

C++--在屏幕上显示指定的文本文件的内容

标签:names   namespace   open   stream   std   ios   cin   pen   文本   

原文地址:https://www.cnblogs.com/zhongxiaozheng/p/12757898.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!