Q:

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

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)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now