-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRandomNumbers.java
30 lines (26 loc) · 1000 Bytes
/
RandomNumbers.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
* 1.2.30 Uniform random numbers.
* Write a program that prints five uniform random numbers between 0 and 1,
* their average value, and their minimum and maximum values.
* Use Math.random(), Math.min(), and Math.max().
* ***/
public class RandomNumbers {
public static void main(String[] args) {
int count = 5;
double sum = 0;
double min = Double.MAX_VALUE;
double max = Double.MIN_VALUE;
System.out.println("Generating " + count + " uniform random numbers between 0 and 1:");
for (int i = 0; i < count; i++) {
double randomNum = Math.random();
sum += randomNum;
min = Math.min(min, randomNum);
max = Math.max(max, randomNum);
System.out.println(randomNum);
}
double average = sum / count;
System.out.println("\nAverage: " + average);
System.out.println("Minimum value: " + min);
System.out.println("Maximum value: " + max);
}
}