Question: using Java, generate a random number between negative 0.02 (inclusive) and 0.1 (exclusive). ONLY MATH.RANDOM() CAN BE USED. I am having a hard time generating

using Java, generate a random number between negative 0.02 (inclusive) and 0.1 (exclusive).

ONLY MATH.RANDOM() CAN BE USED.

I am having a hard time generating random number between those ranges, this is how I did it, but I am not sure if it is correctly generating random numbers between the range specified.

double random = ((Math.random() * 0.1) + -0.02);

if this is not correct, then how do I do it?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!