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

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!