Q:

Write a Java program to generate random numbers using Random()

belongs to collection: Java Number Solved Programs

0

To generate random numbers in Java programming, you have to create the object of Random class available in the java.util.Random package as shown in the following program.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Following Java program to generate random numbers: This code generates random numbers in range 0 to 10000

 
 

SOURCE CODE ::

import java.util.Scanner;
import java.util.Random;
 
public class Random_numbers{
  public static void main(String[] args) {
    int c;
    Random t = new Random();
 
    for (c = 1; c <= 15; c++) {
      System.out.println(t.nextInt(10000));
    }
  }
}
 

OUTPUT ::

7307
3364
9601
6944
1573
7080
199
1261
3046
5751
1963
9607
6334
8294
4390

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Write a Java Program to Find GCD(HCF) and LCM of T... >>
<< Write a Java Program to Print Pascal Triangle usin...