Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started