c++中如何读取文本文件中的数据

请教各位大侠,我现在需要读txt中的数据,1169813313712912016410516818017814173801842502671883293332882873... 请教各位大侠,我现在需要读txt中的数据,
116 98 133 137 129 120
164 105 168 180 178 141
73 80 184 250 267 188
329 333 288 287 312 173
259 262 290 258 271 232
565 1624 1426 1234 749 123
第一回读
116 98 133 137 129
164 105 168 180 178
73 80 184 250 267
329 333 288 287 312
259 262 290 258 271
565 1624 1426 1234 749
第二回读
98 133 137 129 120
105 168 180 178 141
80 184 250 267 188
333 288 287 312 173
262 290 258 271 232
1624 1426 1234 749 123 不知该如何读取?
大侠,你给的程序我没调通,#include<ifstream>是这个头文件吗?还是#include<fstream>?我的水平 有限,请大侠指点
展开
 我来答
bdffoo
2009-11-19 · TA获得超过436个赞
知道答主
回答量:159
采纳率:0%
帮助的人:100万
展开全部
C++吧。不妨假设读取的文件是“001.txt”
则,我们可以这样做
头文件:
#include<iostream>
#include<ifstream>
#include<string>
using namespace std;

ifstream ifile("1.txt");
if(! ifile) {
cerr<<"error."<<endl;
return -1;
}
string word;
while(ifile>>word) {
cout<<word<<" ";
}

这样就读进去了,不过注意这里读进去没了回车,都用空格分开了,要是要原样的读进去,可以用getline()
ifstream ifile("1.txt");
if(! ifile) {
cerr<<"error."<<endl;
return -1;
}
string lineword;
while(getline(ifile,lineword,'\n')) {
cout<<lineword<<endl;
}

这样就和原来一样了,该换行的换行
du瓶邪
2015-08-03 · TA获得超过2.4万个赞
知道大有可为答主
回答量:1.7万
采纳率:100%
帮助的人:2796万
展开全部
利用fread和fwrite格式化读取文件:
#include <iostream>
#include <fstream>
using namespace std;
int main()
{

ifstream in("1.txt");
char c;
while(in.get(c))
cout.put(c);
return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式