如何在C ++中从没有空格的文本文件中读取数字

时间:2015-04-02 06:35:20

标签: c++ file vector

我有一个文本文件,读取此内容。

1101000

当我尝试使用

阅读本文时
vector<int> arr;
int number;  //Variable to hold each number as it is read`
  ifstream in("input.txt",ios::in);
     while (in >> number) {
      arr.push_back(number);
   }

程序运行并显示prg.exe停止工作,并且不显示任何输出。

但是,在整数之间留出空间,相同的程序运行并输出正确。

但是我需要读取文件而不在其间留下空格。

0 个答案:

没有答案