Answers for "make random number java"

90

java random number

import java.util.Random;

Random rand = new Random();

// Obtain a number between [0 - 49].
int n = rand.nextInt(50);

// Add 1 to the result to get a number from the required range
// (i.e., [1 - 50]).
n += 1;
Posted by: Guest on March-09-2020
0

Generate Random number using Math.random in Java

class GenerateRandom {
    public static void main( String args[] ) {
      int min = 50;
      int max = 100;
        
      //Generate random int value from 50 to 100 
      System.out.println("Random value in int from "+min+" to "+max+ ":");
      int random_int = (int)Math.floor(Math.random()*(max-min+1)+min);
      System.out.println(random_int);
    }
}
Posted by: Guest on August-25-2021

Code answers related to "make random number java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language