Question: solve When the input integer variable folderCount is: e less than 40, output Small file cabinet'. e between 40 inclusive and 141 exclusive, output Mid-sized
solve
When the input integer variable folderCount is: e less than 40, output "Small file cabinet'. e between 40 inclusive and 141 exclusive, output "Mid-sized file cabinet". e greater than or equal to 141, output "Need multiple cabinets". Code the branches in list order. End with a newline. Click here forexamples A Ex 1: If the input is 39, then the output is: Small file cabinet Ex 2: If the input is 140, then the output is: Mid-sized file cabinet Ex 3: If the input is 142, then the output is: Need multiple cabinets 1 import java.util. Scanner; ho 3 public class Folder { 4 public static void main(String args) { 5 Scanner scnr = new Scanner(System.in); 6 int folderCount; 7 8 folderCount = scnr.nextInt(); 9 10 /* Your code goes here */ 11 12 +}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
