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.
Custom Navigation bar with Material UI design
Modern Login and Register screen UI design
Sound Recorder App 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.