我有一个文本文件,读取此内容。
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
停止工作,并且不显示任何输出。
但是,在整数之间留出空间,相同的程序运行并输出正确。
但是我需要读取文件而不在其间留下空格。