Question: finish the code: Given integer suppliedGrapes, output: Large case, if there are 2 0 - 6 0 grapes inclusive. Extra large case, if there are

finish the code: Given integer suppliedGrapes, output:
"Large case", if there are 20-60 grapes inclusive.
"Extra large case", if there are 100-140 grapes inclusive.
End each output with a newline.
Ex: If the input is 109, then the output is:
Extra large case import java.util.Scanner;
public class GrapesCount {
public static void main (String[] args){
Scanner scnr = new Scanner(System.in);
int suppliedGrapes;
suppliedGrapes = 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!