random methods java code example
Example 1: random java
import java.util.Random();
Random <name> = new Random();
<variable> = <name>.nextInt(<excuslive top limit>);
Example 2: random class
Random rd = new Random(); //Create an instance of Random Class
int x = rd.Next(1,50); //Generates a random number of int datatype between 1 and 50
Console.WriteLine(x); //Print the random number on Console