math.random java between 1 and 10 code example

Example 1: javascript random number between 1 and 10

// Genereates a number between 0 to 1;
Math.random();

// to gerate a randome rounded number between 1 to 10;
var theRandomNumber = Math.floor(Math.random() * 10) + 1;

Example 2: java random numbers in specific range

import java.util.Random;

Random rand = new Random();
int random_integer = rand.nextInt(upperbound-lowerbound) + lowerbound;

Example 3: math.random java between 1 and 10

((int) (Math.random()*(maximum - minimum))) + minimum;

Example 4: java random number generator in range

int rand = ThreadLocalRandom.current().nextInt(x,y);

Tags:

Misc Example