我刚刚开始使用C ++。我写了一个小程序,选择1-100之间的随机数,然后修改它以使程序计算出数字(并计算所需的猜测数)。
程序中的所有内容都有效,除了一件事。我正在使用一个公式来猜测当前猜测与之前的最高/最低值之间的差异,所以猜测太低了:
low = guess;
guess = (( guess + high ) / 2);
它适用于除100之外的所有数字。当它达到99时,它将199/2变为99,所以我得到了无限循环的“99”猜测。有没有办法防止这个或一些可以解决这个问题的公式?我知道如果程序第二次猜测99,我可以使int = 101或写一个特例,但这似乎不是对此的“干净”答案。
谢谢!
完整的程序代码:
#include <cstdlib>
#include <ctime>
#include <iostream>
using namespace std;
int randResult ( int low, int high )
{
return rand() % ( high - low + 1 ) + low;
}
int main ()
{
srand( time ( NULL ));
int guess = 50; //set the initial guess
int high = 100;
int low = 1;
//int number = randResult( 1, 100 );
int number = 100; //using this to test limits of guessing
int numberOfGuesses = 0;
bool guessCorrectly;
while ( guessCorrectly == 0 )
{
cout << "Computer guessing " << guess << endl;
numberOfGuesses++;
if ( guess == number )
{
cout << "Correct! The number was " << number << endl;
guessCorrectly = 1;
}
else if ( guess < number )
{
cout << "Too low!" << endl;
low = guess;
guess = (( guess + high ) / 2);
}
else
{
cout << "Too high!" << endl;
high = guess;
guess = (( guess + low ) / 2 );
}
}
cout << "Total Number of Guesses: " << numberOfGuesses << endl;
cout << "The Number Was: " << number << endl;
}
答案 0 :(得分:2)
另一种选择是你从
开始 int high= 101 ;
你永远不会要求101
,因为在最坏的情况下你会有
low= 99 ;
high= 101 ;
然后
guess= ( low + high ) / 2 ; // = 100
答案 1 :(得分:1)
尝试
low = guess;
guess = (( guess + high +1) / 2);
答案 2 :(得分:1)
你的代码问题很明显:
else if(guess<number)
{
low=guess;
}
这里的问题是你要为猜测的数字分配下限,但这是 不合逻辑,因为猜测数字较低,所以使用数字:
low=guess+1;
此代码不仅可以解决问题,还可以缩短执行时间 减去要检查的号码 类似地:
else
{
high=guess-1;
}