Question: When the given integer variable numPackages is: less than 7 , output Small box. between 7 inclusive and 1 3 inclusive, output Extra large box.
When the given integer variable numPackages is:
less than output "Small box".
between inclusive and inclusive, output "Extra large box".
greater than output "Needs more than one box".
End with a newline.
Ex: If the input is then the output is:
Small box import java.util.Scanner;
public class PackageData
public static void mainString args
Scanner scnr new ScannerSystemin;
int numPackages;
numPackages scnrnextInt;
Your code goes here
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
