我正在尝试将文件中的所有整数(最多100个整数)读入数组,并打印输入的数字以及输入的数字。我和#34; .eof"有问题。无论我尝试什么,都不会读取输入文件中的最后一个值。有人可以告诉我这是什么问题吗?这是代码。
#include <iostream>
#include <fstream>
#include <iomanip>
#include <string>
using namespace std;
int main()
{
int bubble[100];
int s = 0;
int count = 0;
string fileName;
//int i = 0;
for(int i = 0; i < 100; i++) bubble[i] = 0;
cout << "Enter the name of a file of integers to be sorted " << endl;
cin >> fileName;
ifstream myfile (fileName);
myfile >> s;
//bubble[0] = s;
while (! myfile.eof() ) //while the end of file is not reached
{
//myfile >> s;
for(int i = 0; i < 100; i++)
{
//myfile >> s;
if(! myfile.eof())
{
bubble[i] = s;
myfile >> s;
}
else
{
bubble[i] = -1;
}
}
//i++;
}
myfile.close();
for(int i = 0; i < 100; i++)
{
if(bubble[i] != -1)
{
count ++;
}
}
// cout << count;
for(int i = 0; i < count; i++)
{
if(bubble[i] != -1)
{
if((i % 10 == 9) || (i== count-1))
{
cout << setw(4) << bubble[i] << endl;
}
else
{
cout << setw(4) << bubble[i] << " ";
}
//count ++;
}
}
cout << "\n\nNumber of values in the input file: " << count << endl;
return 0;
}
输入: 100 94 59 83 7 11 92 76 37 89 74 59 65 79 49 89 89 75 64 82 15 74 82 68 92 61 33 95 91 82 89 64 43 93 86 65 72 40 42 90 81 62 90 89 35 81 48 33 94 81 76 86 67 70 100 80 83 78 96 58
输出: 输入要排序的整数文件的名称 bubble_input.txt 100 94 59 83 7 11 92 76 37 89 74 59 65 79 49 89 89 75 64 82 15 74 82 68 92 61 33 95 91 82 89 64 43 93 86 65 72 40 42 90 81 62 90 89 35 81 48 33 94 81 76 86 67 70 100 80 83 78 96
输入文件中的值数:59
(应该是60,58应该在最后一个位置)
感谢您的帮助!
答案 0 :(得分:1)
你在代码中所做的是(借用伪伪代码):
save value of `s` in `bubble[i]`
read in an integer, saving it in the variable `s`,
repeat as long as we have something on the input
这样,当您到达文件末尾时,最后一个变量仍然只存储在s
中,您不会将其复制到bubble[i]
。只需将其直接保存在阵列中,就可以解决您的问题。
编辑 - 我也注意到了 - while循环不像if一样工作。如果文件有超过100个整数,您将使用后面的数字(可能是-1)覆盖前100个。