So after putting the nHigh/nLow example (5.9) in Xcode (like I do with all examples), it gave me a warning - expected expression - whilst pointing to return.
Here's the code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include <iostream>
#include <cstdlib> // Rand and srand
usingnamespace std;
int main()
{
// Random number between nHigh and nLow
unsignedint GetRandomNumber(int nLow, int nHigh)
{
return (rand() % (nHigh - nLow + 1)) + nLow; // Here's "return"
};
cout << GetRandomNumber(1, 6);
}
However, I still have a problem: every time I compile it, it gives the same number. 1 and 6 gives 2 every time, 1 and 20 gives 8 every time, etcetera. Is this intentional?
@Prodevus, like iHutch said. But you only ever need to seed it once. i.e. Don't use srand( time( NULL ) ); in a loop. Just add it to the start of main() etc.