我只是想拥有一个简单的 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 函数怎么办?