Question: finish the code: Given integer spoonsRequested, output: Full box, if the number of spoons is greater than or equal to 2 9 and less than

finish the code: Given integer spoonsRequested, output:
"Full box", if the number of spoons is greater than or equal to 29 and less than or equal to 62.
"Jumbo box", if the number of spoons is greater than or equal to 95 and less than 114.
"Select another amount" otherwise.
End each output with a newline.
Ex: If the input is 78, then the output is:
Select another amount import java.util.Scanner;
public class SpoonsQuantity {
public static void main (String[] args){
Scanner scnr = new Scanner(System.in);
int spoonsRequested;
spoonsRequested = scnr.nextInt();

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!