Question: When the input integer variable numDiners is: less than or equal to 5 , output Small table. between 5 exclusive and 1 1 inclusive, output

When the input integer variable numDiners is:
less than or equal to 5, output "Small table".
between 5 exclusive and 11 inclusive, output "Mid-sized table".
greater than 11, output "Group too large".
End with a newline. import java.util.Scanner;
public class Diner {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
int numDiners;
numDiners = scnr.nextInt();
if(numDiners >= or ==5)
}
}

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!