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 7, output "Small box".
between 7 inclusive and 13 inclusive, output "Extra large box".
greater than 13, output "Needs more than one box".
End with a newline.
Ex: If the input is 6, then the output is:
Small box import java.util.Scanner;
public class PackageData {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
int numPackages;
numPackages = scnr.nextInt();
/* Your code goes here */
}
}

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!