util.Random in java code example
Example 1: float random class java
import java.util.Random;
public class Example {
public static void main(String[] args) {
Random rd = new Random();
System.out.println(rd.nextFloat());
}
}
Example 2: java random.nextint
public class Random {
public static void main(String[] args) {
Random random = new Random(long seed);
int bound = 5;
System.out.println(random.nextInt(bound));
}
}
Example 3: random class
Random rd = new Random();
int x = rd.Next(1,50);
Console.WriteLine(x);