Startertutorials Blog
Tutorials and articles related to programming, computer science, technology and others.
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.
Home » Programming » Java » Programs » Basic » Java program to generate random numbers
Suryateja Pericherla Categories: Basic. No Comments on Java program to generate random numbers
0
(0)

In this article we will learn to implement a Java program to generate random numbers. A Java program is provided below to generate a set of random numbers between two numbers x1 and x2, and x1>0.

 

Program is as follows:

import java.util.*;
class RandomGen
{
	public static void main(String args[])
	{
		int min = 2;
		int max = 10;
		Random rand = new Random();
		for(int i=1;i<=5;i++)
		{
			int num = rand.nextInt(max-min+1)+min;
			System.out.println("Random number between "+min+" and "+max+" is: "+num);
		}
	}
}

 

Output for the above program is as follows:

Random number between 2 and 10 is: 10
Random number between 2 and 10 is: 8
Random number between 2 and 10 is: 9
Random number between 2 and 10 is: 4
Random number between 2 and 10 is: 7

 

How useful was this post?

Click on a star to rate it!


Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests.


We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

Leave a Reply

Your email address will not be published. Required fields are marked *

Facebook
Twitter
Pinterest
Youtube
Instagram
Blogarama - Blog Directory