Question: Integers seedVal, minValue and maxValue are read from input. minValue and maxValue represent the minimum and maximum numbers of candies to be put in each

Integers seedVal, minValue and maxValue are read from input. minValue and maxValue represent the minimum and maximum
numbers of candies to be put in each basket, respectively. A total of 120 candies are available. Complete the following tasks:
Call srand 0 with seedval as the argument.
Assign variables basket1, basket2, and basket3 each with a random number of candies between minValue and maxValue,
both inclusive.
Assign variable remainingCandies with 120 minus the sum of basket1, basket2, and basket3.
Click here for example
Ex. If minvalue is 15 and maxvalue is 25, then one possible output is:
Initial: 120
25
21
24
Remainder: 50
int basket2;
int basket3;
cin seedval;
cin minvalue;
cin maxvalue;
cout "Initial: 120? end ;
V** your code goes here */
cout basket 1 end 1 ;
cout basket 2 end 1 ;
cout basket 3 endl;
cout "Remainder: " remainingCandies endl;
return ;
}
 Integers seedVal, minValue and maxValue are read from input. minValue and

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!