C++逐行读取txt中的数据,并保存到数组中

有txt按行记录部分数据如:123456789...要将数据读取到数组inta[100]中a[0]=123,a[1]=456,a[2]=789依此类推;求解答。。。C++... 有txt按行记录部分数据如:
123
456
789
...
要将数据读取到数组int a[100]中
a[0]=123,
a[1]=456,
a[2]=789依此类推;
求解答。。。C++
展开
 我来答
百度网友c22c38134
2011-02-24 · TA获得超过359个赞
知道小有建树答主
回答量:156
采纳率:0%
帮助的人:154万
展开全部

///代码在Dev-C++ 4.9.9.2环境下编译成功!

///new.txt为当前目录下的文件,格式如你所说.

#include <iostream>

#include <fstream>

int main()

{

    std::ifstream in("number.txt");

    if(not in)

         return EXIT_FAILURE;

    int a[100] = {0};

    int index(0);

    int x(0);

    while(in >> x)

    {

         if(index > 99)

         {

              std::cout << "The array is full of number!\n";

              break;

         }

         a[index] = x;

         ++index;

    }

    std::cout << "There are " << index << " numbers in the array!\n";

    ///print the array

    if(not (index == 0))

    for(int i=0;i<index;++i)

         std::cout << "a[" << i << "] = " << a[i] << "\n";

    

    system("pause");

    return 0;

}

冰火梦幻
2011-02-24 · TA获得超过2308个赞
知道小有建树答主
回答量:1095
采纳率:57%
帮助的人:421万
展开全部
int num_count = 0;
int a[100];

fp = fopen("file.txt", "r");

while (1 == fscanf(fp, "%d", &a[num_count] ) )
num_count++;

fclose(fp);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
dengniyiqianni
2011-02-24 · TA获得超过316个赞
知道小有建树答主
回答量:213
采纳率:0%
帮助的人:319万
展开全部
刚刚写了个,自己看看吧,应该看得明白。
#include <fstream>
#include<iostream>
using namespace std;

void main()
{
fstream file;
file.open("s.txt",ios::in);
if(!file)
cout<<"file not founded"<<endl;
int a [100];
int pos = 0;
while(!file.eof())//是否到文件结尾
{
file>>a[pos];
pos++;
if(pos>=100)
break;
}
file.close();
for(int i = 0;i<pos;i++)
cout<<a[i]<<endl;
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式