用C++怎么读取txt文件 并能够只用文件中的内容
展开全部
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
int main()
{
const char* filename="C:\\1.txt";//打开c盘根目录下的1.txt文件,请确保该文件存在
ifstream in(filename,ios::in);//创建输入流
if(!in)
{
cout<<"打开文件失败!\n";
system("pause");
return 0;
}
while(!in.eof())//读文件
{
string words;
in>>words;
cout<<words<<endl;//打印读取的内容
}
system("pause");
return 0;
}
#include<fstream>
#include<string>
using namespace std;
int main()
{
const char* filename="C:\\1.txt";//打开c盘根目录下的1.txt文件,请确保该文件存在
ifstream in(filename,ios::in);//创建输入流
if(!in)
{
cout<<"打开文件失败!\n";
system("pause");
return 0;
}
while(!in.eof())//读文件
{
string words;
in>>words;
cout<<words<<endl;//打印读取的内容
}
system("pause");
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询