Java Program to generate Random Number between two numbers using Random class
RandomNumber2.java
import java.util.*;
/* Code From Learnoset - Learn Coding Online.
Download Learnoset App from PlayStore to learn coding,
projects, algorithms, error handling
*/
// Java Program to generate Random Number between two numbers using Random class
public class RandomNumber2 {
public static void main(String args[]) {
// create Scanner class object to get input from user
Scanner scanner = new Scanner(System.in);
System.out.println("Enter minimum value");
//get user's enetered value from 'scanner' object into 'minimum' variable
int minimum = scanner.nextInt();
System.out.println("Enter minimum value");
//get user's enetered value from 'scanner' object into 'maximum' variable
int maximum = scanner.nextInt();
// create Random class object
Random randomObj = new Random();
/* generate random number using 'nextInt(int)' function of Random class
this function take 1 argument
first argument is a bound (max value)*/
int randomNumber = randomObj.nextInt(maximum - minimum) + minimum;
System.out.println("Generated random number is = "+randomNumber);
}
}
Projects with Source Code + Video Tutorials
You can download our Java and Android Studio Projects with Source Code and Video Tutorials.
Gamer Bazi - Tournament Application with Admob Ads & Web Admin Panel
Settings and Profile page UI design in Android Studio with Example and Source Code
Modern Splash Screen with Animations - 01
If you have any Questions or Queries
You can mail us at info.learnoset@gmail.com
Follow us to learn Coding and get in touch with new Technologies.