c++ random number between 1 and 100 code example
Example 1: c++ random number between 1 and 10
cout << (rand() % 10) + 1<<" ";
Example 2: how to get a random number between two numbers in c++
int randNum = rand()%(max-min + 1) + min;
Example 3: random in c++
v1 = rand() % 100; // v1 in the range 0 to 99
v2 = rand() % 100 + 1; // v2 in the range 1 to 100
v3 = rand() % 30 + 1985; // v3 in the range 1985-2014