Java Examples

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

Java Program to generate Random Number using Match class

RandomNumber.java

import java.util.Random;  

/* 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 Match class

public class RandomNumber {
    
	public static void main(String args[]) {
       
	   /* 'Math' class is a pre-defined class in java library 
	    this class is used while performing mathematical operations*/
		
	   // Generating random numbers  
        System.out.println("1st Random Number: " + Math.random());
        System.out.println("2nd Random Number: " + Math.random());
    }
}

Projects with Source Code + Video Tutorials

You can download our Java and Android Studio Projects with Source Code and Video Tutorials.

Complete-Chat-Application-Using-Firebase-Database
Complete Chat Application Using Firebase Database
Create-your-own-Web-Browser-Source-Code
Create your own Web Browser Source Code
Login-and-Register-screen-with-OTP-Verification-Material-UI-design
Login and Register screen with OTP Verification Material UI design

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.