This Java program demonstrates how to generate random numbers using the Math.random() method. It first generates 5 random numbers between 0 and 1, then generates 5 random integers between 1 and 100 by multiplying the Math.random() output by 100 and casting to an int. The typical output shows examples of the random numbers generated.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
37 views1 page
String: Public Class Public Static
This Java program demonstrates how to generate random numbers using the Math.random() method. It first generates 5 random numbers between 0 and 1, then generates 5 random integers between 1 and 100 by multiplying the Math.random() output by 100 and casting to an int. The typical output shows examples of the random numbers generated.
public static void main(String[] args) { /* * To generate random numbers, use * static double random() method of Java Math class. * * This method returns a positive double value grater than 0.0 * and less than 1.0 */ System.out.println("Random numbers between 0.0 and 1.0 are,"); for(int i=0; i < 5 ; i++) System.out.println("Random Number ["+ (i+1) + "] : " + Math.random()); /* * To generate random number between 1 to 100 use following code */ System.out.println("Random numbers between 1 and 100 are,"); for(int i=0; i < 5 ; i++) System.out.println("Random Number ["+ (i+1) + "] : " +(int)(Math.random()*100)); } } /* Typical output would be Random numbers between 0.0 and 1.0 are, Random Number [1] : 0.7900395454653136 Random Number [2] : 0.15887365598103076 Random Number [3] : 0.5570570713930629 Random Number [4] : 0.017811004461356195 Random Number [5] : 0.7135560403213513 Random Random Random Random Random Random */
numbers between 1 and 100 are,
Number [1] : 31 Number [2] : 21 Number [3] : 24 Number [4] : 95 Number [5] : 3