Question: PARTICIPATION ACTIVITY 4 . 1 . 5 : Handling input exceptions: restaurant max occupancy tracker. Full screen Arrange the following lines to make a program
PARTICIPATION
ACTIVITY
: Handling input exceptions: restaurant max occupancy tracker.
Full screen
Arrange the following lines to make a program that determines when the number of people in a restaurant equals or exceeds occupants. The program continually gets the number of people entering or leaving the restaurant. Ex: means two people entered, and means three people left. After each input, the program outputs the number of people in the restaurant. Once the number of people in the restaurant equals or exceeds the program exits.
If an InputMismatchException exception occurs, the program should get and discard a single string from input. Ex: The input abc should result in occupants. Not all lines are used in the solution.
How to use this tool
Unused
while totalNumPeople maxNumPeople
System.out.printlnOccupancy: totalNumPeople;
try
totalNumPeople scnr nextInt;
catch InputMismatchException e
scnrnextLine;
catch
scnrnext ;
System.out.printlnError;
MaxOccupancyTracker.java
Load default template...
import java.util.Scanner;
import java.util. InputMismatchException;
public class MaxccupancyTracker public static void mainString args
Scanner scnr new ScannerSystem in;
int maxNumPeople ;
int totalNumPeople ;
System. out.printlnWere full!";
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
