Question: Given integer suppliedGrapes, output: Medium case if there are 40-50 grapes. Large case if there are 100-110 grapes. 1 #include 2 using namespace std; 3

 Given integer suppliedGrapes, output: "Medium case" if there are 40-50 grapes.

Given integer suppliedGrapes, output: "Medium case" if there are 40-50 grapes. "Large case" if there are 100-110 grapes. 1 #include 2 using namespace std; 3 4 int main() { 5 int suppliedGrapes; 6 7 // Our tests will run your program with input 69, then run again with input 103, then with other values. 8 // Your program should work for any input, though. 9 cin >> suppliedGrapes; 10 11 \* Your code goes here */ 12 13 return 0; 14 }

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!