Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Java program to demonstrate working of
- // Math.random() to generate random numbers
- import java.util.*;
- public class generateRandom
- {
- public static void main(String args[])
- {
- // Generating random doubles
- System.out.println("Random doubles: " + Math.random());
- System.out.println("Random doubles: " + Math.random());
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment