Java Examples

100+ tutorials, source code, and examples to help you develop creative and technical skills.

Java Program to generate Random Number using Random class

RandomNumber1.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 using Random class

public class RandomNumber1 {
    
	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 '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);
		
		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.

How-to-create-custom-Update-Dialog-with-Example-in-Android-Studio
How to create custom Update Dialog with Example in Android Studio
Online-Quiz-Application-using-Firebase-Realtime-Database-Source-Code
Online Quiz Application using Firebase Realtime Database Source Code
Online-Tic-Tac-Toe-game-Using-Firebase-Database-in-Android-Studio
Online Tic Tac Toe game Using Firebase Database in Android Studio

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.