Question: When the input integer variable filecount is: less than 3 3 , output Small file cabinet. between 3 3 inclusive and 9 2 inclusive, output
When the input integer variable filecount is:
less than output "Small file cabinet".
between inclusive and inclusive, output "Large file cabinet".
greater than output "Need multiple cabinets".
End with a newline.
Click here for examples
int main
int fileCount;
cin fileCount;
if fileCount
cout "Small file cabinet" endl;
else fileCount
cout "Large file cabinet" endl;
else fileCount
cout "Need multiple cabinets" 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
