Question: Integer suppliedCups is read from input representing the number of cups. Output: Basic case, if the number of cups is greater than 5 5 and

Integer suppliedCups is read from input representing the number of cups. Output:
"Basic case", if the number of cups is greater than 55 and less than or equal to 100.
"Standard case", if the number of cups is greater than or equal to 160 and less than or equal to 180. import java.util.Scanner;
public class CupsCount {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
int suppliedCups;
suppliedCups = scnr.nextInt();
/* Your code goes here */
}
}
"Select another amount", otherwise.
End each output with a newline.

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!