31

重複の可能性:
範囲からランダムな整数を生成する

ユーザーが頭に浮かんだ数字をコンピューターが推測するプログラムを作成しようとしています。必要なユーザー入力は、推測が高すぎる、低すぎる、または正しいかどうかだけです。以前の推測に基づいて最小値と最大値を格納する 2 つの変数の間で乱数を生成する際に問題が発生しています。これが私のコードです:

    #include <iostream>
    #include <cstdlib>
    #include <ctime>

    using namespace std;

    int main()
    {
        srand(static_cast <unsigned int> (time(0)));

        int compGuess = rand() % 100 +1; //Generates number between 1 - 100
        int highestNumber = 100;
        int lowestNumber = 1;
        char ready;
        char highLowSuccess;
        bool success;
        int tries = 0;


        cout << "Please pick a number between 1 - 100. I will guess your number. Don't tell me what it is!\n\n";


        do
        {
            cout << "Are you ready? (y/n)\n\n";
            cin >> ready;

            if (ready == 'y')
            {
                do
                {
                    cout << "Is your number " << compGuess << "?\n\n";
                    cout << "High, Low or Success?";
                    ++tries;
                    cin >> highLowSuccess; //User input telling the computer whether its too high, too low, or a success

                    if (highLowSuccess == 'h') //Executes code if number guessed was too high.
                    {

                        highestNumber = compGuess - 1; //Stores variable indicating the highest possible number based on user input
                        compGuess = rand() % highestNumber +1; //Generates a new random number between 1 and the new highest possible number
                        success = false;
                    }

                    else if (highLowSuccess == 'l') //Executes code if number guessed was too low.
                    {
                        lowestNumber = compGuess + 1;//Stores variable indicating the lowest possible number based on user input
                        compGuess = (rand() % highestNumber - lowestNumber + 1) + lowestNumber // <---- Not producing the desired result
                        success = false;
                    }

                    else if (highLowSuccess == 's') //Executes code if the computer's guess was correct.
                    {
                        cout << "I guessed your number! It only took me " << tries << " tries!";
                        success = true;
                    }


                } while (success != true);
            }


            else
            {
             continue;
            }

       } while (ready != 'y');



    return 0;

    }

maximumNumber は最大値であり、lowestNumber は最小値です。可能な最大値と最小値を考慮しながら乱数を生成できる方程式が必要です。

答えが本当に単純な場合は許してください。私は初心者プログラマーです。xD

4

4 に答える 4

68

最小値と最大値の間の乱数を生成するには、次を使用します。

int randNum = rand()%(max-min + 1) + min;

(最大値と最小値を含む)

于 2012-09-30T01:43:38.393 に答える
35

本当に速く、本当に簡単です:

srand(time(NULL)); // Seed the time
int finalNum = rand()%(max-min+1)+min; // Generate the number, assign to variable.

それだけです。ただし、これは下端に偏っていますが、C++ TR1/C++11randomを使用している場合は、次のようにヘッダーを使用してその偏りを回避できます。

#include <random>

std::mt19937 rng(seed);
std::uniform_int_distribution<int> gen(min, max); // uniform, unbiased

int r = gen(rng);

ただし、次のように通常の C++ でバイアスを削除することもできます。

int rangeRandomAlg2 (int min, int max){
    int n = max - min + 1;
    int remainder = RAND_MAX % n;
    int x;
    do{
        x = rand();
    }while (x >= RAND_MAX - remainder);
    return min + x % n;
}

そしてそれはこの投稿から得られました。

于 2012-09-30T01:56:43.970 に答える
24

C++11 コンパイラをお持ちの場合は、C++ の疑似乱数機能を使用して、将来に備えることができます。

//make sure to include the random number generators and such
#include <random>
//the random device that will seed the generator
std::random_device seeder;
//then make a mersenne twister engine
std::mt19937 engine(seeder());
//then the easy part... the distribution
std::uniform_int_distribution<int> dist(min, max);
//then just generate the integer like this:
int compGuess = dist(engine);

モジュロやがらくたに関係することを何もする必要がないので、把握するのが少し簡単かもしれません...より多くのコードが必要ですが、新しいC ++のことを知ることは常に良いことです...

これが役に立てば幸いです - ルーク

于 2012-09-30T02:04:59.737 に答える
7
rand() % ((highestNumber - lowestNumber) + 1) + lowestNumber
于 2012-09-30T01:47:43.860 に答える