Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please use compound Boolean statements instead of if-else chains or count variable. Write a program that creates three random double variables a, b, and c
Please use compound Boolean statements instead of if-else chains or count variable.
Write a program that creates three random double variables a, b, and c and assigns them values between 0 and 1 using the Math.random() method mentioned in the preceding exercise. It then does all of the following: a. It prints "All are tiny" if all three values are less than 0.5. b. It prints out "One is tiny" if exactly one of the three values is less than 0.5. c. It prints out "Only two are tiny" if exactly two of the three values are less than 0.5. d. it prints if None is tiny" if none of the values are less than 0.5. public class ThreeRandomNum { public static void main(String[] args) { double a = Math.random(), b = Math.random(), c = Math.random(); System.out.println("Numbers are " + a + ", " + b + " and " + c); if (aStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started