Issue
Good day
I am new to java and would like to know if there is a way for me to randomly choose between multiplication and addition and apply it to two numbers.
Any guidance would be appreciated.
Solution
I guess a code like the following could work:
// given two number a, b
double rand = Math.random();
if (rand > 0.5)
c = a*b;
else
c = a+b;
// c is the result of the addition/multiplication
Answered By - robob
Answer Checked By - Mary Flores (JavaFixing Volunteer)