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
Bottom Navigation Bar with Fragments + Animation
Settings and Profile page UI design in Android Studio with Example and Source Code
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.