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 candies are available. Complete the following tasks:
Call srand with seedval as the argument.
Assign variables basket basket and basket each with a random number of candies between minValue and maxValue,
both inclusive.
Assign variable remainingCandies with minus the sum of basket basket and basket
Click here for example
Ex If minvalue is and maxvalue is then one possible output is:
Initial:
Remainder:
int basket;
int basket;
cin seedval;
cin minvalue;
cin maxvalue;
cout "Initial: end ;
your code goes here
cout basket end ;
cout basket end ;
cout basket endl;
cout "Remainder: remainingCandies endl;
return ;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
