C++读取文件getline 如何用getline整行读取txt文件内部的信息??? 高手指教
很多人答的不对头呀我的txt每行我都不知道有多少个字呀我就要读取一行txt里面的信息然后显示到屏幕...
很多人答的不对头呀
我的txt每行我都不知道有多少个字呀
我就要读取一行txt里面的信息 然后显示到屏幕 展开
我的txt每行我都不知道有多少个字呀
我就要读取一行txt里面的信息 然后显示到屏幕 展开
3个回答
展开全部
#include "iostream"
#include "fstream"
#include "string"
using namespace std;
int main()
{
string name,line;
cin>>name;
ifstream fp(name.c_str());
while (!fp.eof())
{
getline(fp,line);
cout<<line<<endl;
}
return 0;
}将txt文件拖进去就行了~已编译通过
#include "fstream"
#include "string"
using namespace std;
int main()
{
string name,line;
cin>>name;
ifstream fp(name.c_str());
while (!fp.eof())
{
getline(fp,line);
cout<<line<<endl;
}
return 0;
}将txt文件拖进去就行了~已编译通过
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
// getline with strings
#include <iostream>
#include <string>
using namespace std;
int main () {
string str;
cout << "Please enter full name: ";
getline (cin,str);
cout << "Thank you, " << str << ".\n";
}
#include <iostream>
#include <string>
using namespace std;
int main () {
string str;
cout << "Please enter full name: ";
getline (cin,str);
cout << "Thank you, " << str << ".\n";
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询