random number within a range code example

Example 1: generate random whole numbers within a range

var myMin = 1;
var myMax = 10;
function randomRange(myMin, myMax) {
  return Math.floor(Math.random() * (myMax - myMin + 1)) + myMin;
}

console.log(randomRange(myMin, myMax));

Example 2: Random number in set range

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

using namespace std;

int main() 
{ 
    srand((unsigned)time(0)); 
    int random_integer; 
    int lowest=1, highest=10; 
    int range=(highest-lowest)+1; 
    for(int index=0; index<20; index++){ 
        random_integer = lowest+int(range*rand()/(RAND_MAX + 1.0)); 
        cout << random_integer << endl; 
    } 
}

Example 3: random in range

// Get a random number between 20 and 30 
Math.round((Math.random() * (30 - 20 + 1)) + 20);

Tags:

Misc Example