Java program to generate 5 Random nos. between 1 to 100

1
2
3
4
5
6
7
8
9
10
/*Write a program to generate 5 Random nos. between 1 to 100, and it
  should not follow with decimal point.
 */
class RandomDemo{
	public static void main(String args[]){
		for(int i=1;i<=5;i++){
			System.out.println((int)(Math.random()*100));
		}
	}
}
surajk

Leave a Reply

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

Get the latest updates on your inbox

Be the first to receive the latest updates from Codesdoc by signing up to our email subscription.

    StudentProjects.in