-1

我只是想拥有一个简单的 RndInt(limit) 函数,该函数将返回以限制为限制的随机数。

    cout << "Enter higher limit of random range:" ;
 cin >> limit;
 while(limit != 0)

{
//        RndInt(limit);
    cout << "Random number smaller than " << limit << " is " << RndInt(limit) << endl;
    cin.get();
    cin.get();
    cout << "Other random number smaller than " << limit << " is " << RndInt(limit) << endl;
    cin.get();
    cin.get();
    cout << "There is " << RndInt(limit) << " ways I love you" <<endl ;
    cout << "Enter higher limit of random range:" ;
    cin >> limit;
}
return 0;
}

int RndInt(int limit)
{
srand(time(&base));
int rndnumber;
rndnumber=rand()%limit;
base+=100;
return rndnumber;
}

我在使 RndInt 后续调用显示不同的整数时遇到问题。当我调试其对 RndInt(limit) 的良好后续调用时,会给出不同的值。但是当我尝试在没有 cin.get() 暂停的情况下运行它时,我在所有三个调用中都得到相同的数字。我发现问题是种子在同一秒内。

我的问题是如何使对 RndInt 的调用返回不同的值而不会暂停。srand 函数怎么办?

4

1 回答 1

10

不要srand()每次想要随机数时都打电话。在程序开始时调用srand() 一次,然后调用rand()每个号码。

于 2012-07-24T03:12:23.090 回答