0

好的,我正在处理的这个程序似乎一切正常,除了有问题。这是代码

#include <iostream>
#include <fstream>

using namespace std;

/*
Function Name: CalculateBinary
CalculateBinary takes a number from the main function and finds its binary form.
*/

void CalculateBinary( long InputNum)
{   
    //Takes InputNum and divides it down to "1" or "0" so that it can be put in binary form.
    if ( InputNum != 1 && InputNum != 0)
        CalculateBinary(InputNum/2);

    // If the number has no remainder it outputs a "0". Otherwise it outputs a "1". 
    if (InputNum % 2 == 0)
        cout << "0";
    else
        cout << "1";
}


void main()
{
    // Where the current number will be stored
      long InputNum;

    //Opens the text file and inputs first number into InputNum. 
    ifstream fin("binin.txt");
    fin >> InputNum;

    // While Input number is not 0 the loop will continue to evaluate, getting a new number each time.
    while (InputNum >= 0)
    {
        if(InputNum > 1000000000)
            cout << "Number too large for this program ....";
        else
            CalculateBinary(InputNum);

        cout << endl;
        fin >> InputNum;        
    }
}

这是我正在阅读的文本文件

12
8764
 2147483648
2
-1

当我到达 8764 时,它只是一遍又一遍地读取这个数字。它忽略了 2147483648。我知道我可以通过将 InputNum 声明为 long long 来解决这个问题。但我想知道它为什么这样做?

4

4 回答 4

4

That is the usual problem with such loops which you've written.

The correct and the idiomatic loop is this:

ifstream fin("binin.txt");
long InputNum;
while (fin >> InputNum && InputNum >= 0)
{
   //now construct the logic accordingly!
    if(InputNum > 1000000000)
         cout << "Number too large for this program ....";
    else
         CalculateBinary(InputNum);
    cout << endl;
}
于 2011-09-13T17:03:30.083 回答
2

这个数字太大而long无法存储,所以fin >> InputNum;什么也不做。您应该始终阅读为while(fin >> InputNum) { ... },因为这将在失败时立即终止循环,或者至少检查流状态。

于 2011-09-13T17:02:11.510 回答
0

您平台上的类型似乎long是 32 位宽。数字 2147483648 (0x80000000) 太大而无法表示为带符号的 32 位整数。您要么需要无符号类型(显然不适用于负数)或 64 位整数。

另外,您应该检查读取是否成功:

  ...
  cout << endl;
  if (!(fin >> InputNum)) break; // break or otherwise handle the error condition
}
于 2011-09-13T17:00:45.600 回答
0

您不检查 EOF,因此永远被困在一个循环中。如果成功,则fin >> InputNum表达式返回,否则,因此将代码更改为类似这样将解决问题:truefalse

while ((fin >> InputNum) && InputNum >= 0)
{
  // ...
}
于 2011-09-13T17:01:46.480 回答