PARTICIPATION ACTIVITY 6.9.5: Handling input exceptions: restaurant max occupancy tracker. Arrange the following lines to make a program that determines when the number of people in a restaurant equals or exceeds 10 occupants. The program continually gets the number of people entering or leaving the restaurant. Ex: 2 means two people entered, and -3 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 10, the program exits. If an Input MismatchException exception occurs, the program should get and discard a single string from input. Ex: The input "2 abc 8" should result in 10 occupants. Not all lines are used in the solution. Mouse: Drag/drop Keyboard: Grab/release Spacebar (or Enter). Move 100. Cancel Esc Unused System.out.println("Error"); } if (totalNumPeople < 0) { totalNumPeople = 0; } catch (InputMismatchException e) { System.out.println("Occupancy: " + totalNumPeople); } totalNumPeople + scnr.nextInt (); catch { try { } while (totalNumPeople < maxNumPeople) { Check MaxOccupancy Tracker.java Load default template... import java.util.Scanner; import java.util. InputMismatchException; public class MaxOccupancyTracker { public static void main (String[] args) { Scanner scnr = new Scanner(System.in); int maxNumPeople = 10; int totalNumPeople = 0; } System.out.println("We're full!");
PARTICIPATION ACTIVITY 6.9.5: Handling input exceptions: restaurant max occupancy tracker. Arrange the following lines to make a program that determines when the number of people in a restaurant equals or exceeds 10 occupants. The program continually gets the number of people entering or leaving the restaurant. Ex: 2 means two people entered, and -3 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 10, the program exits. If an Input MismatchException exception occurs, the program should get and discard a single string from input. Ex: The input "2 abc 8" should result in 10 occupants. Not all lines are used in the solution. Mouse: Drag/drop Keyboard: Grab/release Spacebar (or Enter). Move 100. Cancel Esc Unused System.out.println("Error"); } if (totalNumPeople < 0) { totalNumPeople = 0; } catch (InputMismatchException e) { System.out.println("Occupancy: " + totalNumPeople); } totalNumPeople + scnr.nextInt (); catch { try { } while (totalNumPeople < maxNumPeople) { Check MaxOccupancy Tracker.java Load default template... import java.util.Scanner; import java.util. InputMismatchException; public class MaxOccupancyTracker { public static void main (String[] args) { Scanner scnr = new Scanner(System.in); int maxNumPeople = 10; int totalNumPeople = 0; } System.out.println("We're full!");
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
Related questions
Question
I tried this many times and still cannot get through it.
![= ZyBоOKS My library > 11_145: Intro to Software Development home > 6.9: Handling exceptions
PARTICIPATION
ACTIVITY
Arrange the following lines to make a program that determines when the number of people in a restaurant equals or exceeds 10
occupants. The program continually gets the number of people entering or leaving the restaurant. Ex: 2 means two people
entered, and -3 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 10, the program exits.
6.9.5: Handling input exceptions: restaurant max occupancy tracker.
If an Input MismatchException exception occurs, the program should get and discard a single string from input. Ex: The input "2
abc 8" should result in 10 occupants. Not all lines are used in the solution.
Mouse: Drag/drop
Keyboard: Grab/release (Spacebar (or Enter). Move ↑
Unused
System.out.println("Error");
}
if (totalNumPeople < 0) {
totalNumPeople
0;
}
=
}
catch (InputMismatchException e) {
System.out.println("Occupancy: + totalNumPeople);
totalNumPeople += scnr.nextInt ();
catch {
Check
try {
}
while (totalNumPeople < maxNumPeople) {
→ Cancel Esc
MaxOccupancy Tracker.java
E ZYBOOKS catalog ? Help/FAQ
import java.util.Scanner;
import java.util.InputMismatchException;
}
Load default template...
public class Max0ccupancyTracker {
public static void main (String [] args) {
Scanner scnr = new Scanner(System.in);
int maxNumPeople 10;
int totalNumPeople = 0;
X Failed to compile
MaxOccupancyTracker java 17. error: 'catch' without 'try!
System.out.println("We're full!");
Sydney Lindsey](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F54422bad-1dbc-44f7-b929-730cc42f6e53%2F2b5a8e0b-aa8c-4f32-b2fd-78cae7884dda%2Ff95o58f_processed.png&w=3840&q=75)
Transcribed Image Text:= ZyBоOKS My library > 11_145: Intro to Software Development home > 6.9: Handling exceptions
PARTICIPATION
ACTIVITY
Arrange the following lines to make a program that determines when the number of people in a restaurant equals or exceeds 10
occupants. The program continually gets the number of people entering or leaving the restaurant. Ex: 2 means two people
entered, and -3 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 10, the program exits.
6.9.5: Handling input exceptions: restaurant max occupancy tracker.
If an Input MismatchException exception occurs, the program should get and discard a single string from input. Ex: The input "2
abc 8" should result in 10 occupants. Not all lines are used in the solution.
Mouse: Drag/drop
Keyboard: Grab/release (Spacebar (or Enter). Move ↑
Unused
System.out.println("Error");
}
if (totalNumPeople < 0) {
totalNumPeople
0;
}
=
}
catch (InputMismatchException e) {
System.out.println("Occupancy: + totalNumPeople);
totalNumPeople += scnr.nextInt ();
catch {
Check
try {
}
while (totalNumPeople < maxNumPeople) {
→ Cancel Esc
MaxOccupancy Tracker.java
E ZYBOOKS catalog ? Help/FAQ
import java.util.Scanner;
import java.util.InputMismatchException;
}
Load default template...
public class Max0ccupancyTracker {
public static void main (String [] args) {
Scanner scnr = new Scanner(System.in);
int maxNumPeople 10;
int totalNumPeople = 0;
X Failed to compile
MaxOccupancyTracker java 17. error: 'catch' without 'try!
System.out.println("We're full!");
Sydney Lindsey
![=zyBooks My library > IT 145: Intro to Software Development home > 6.9: Handling exceptions
PARTICIPATION
ACTIVITY
Arrange the following lines to make a program that determines when the number of people in a restaurant equals or exceeds 10
occupants. The program continually gets the number of people entering or leaving the restaurant. Ex: 2 means two people
entered, and -3 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 10, the program exits.
6.9.5: Handling input exceptions: restaurant max occupancy tracker.
If an InputMismatchException exception occurs, the program should get and discard a single string from input. Ex: The input "2
abc 8" should result in 10 occupants. Not all lines are used in the solution.
Mouse: Drag/drop
Keyboard: Grab/release [Spacebar (or Enter). Move
Unused
scnr.next();
scnr.nextLine();
System.out.println("Error");
}
if (totalNumPeople < 0) {
totalNumPeople
0;
}
=
}
catch (InputMismatch Exception e) {
System.out.println("Occupancy: + totalNumPeople);
Check
totalNumPeople += scnr.nextInt ();
catch {
try {
→ Cancel Esc
MaxOccupancy Tracker.java
EzyBooks catalog
import java.util.Scanner;
import java.util.InputMismatchException;
}
public class MaxOccupancyTracker {
public static void main (String [] args) {
Scanner scnr = new Scanner(System.in);
int maxNumPeople
10;
int totalNumPeople = 0;
}
Load default template...
X Failed to compile
MaxOccupancyTracker java:17. error: 'catch' without 'try'
System.out.println("We're full!");
Help/FAQ Sydney Lindsey](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F54422bad-1dbc-44f7-b929-730cc42f6e53%2F2b5a8e0b-aa8c-4f32-b2fd-78cae7884dda%2Fnj4ufz_processed.png&w=3840&q=75)
Transcribed Image Text:=zyBooks My library > IT 145: Intro to Software Development home > 6.9: Handling exceptions
PARTICIPATION
ACTIVITY
Arrange the following lines to make a program that determines when the number of people in a restaurant equals or exceeds 10
occupants. The program continually gets the number of people entering or leaving the restaurant. Ex: 2 means two people
entered, and -3 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 10, the program exits.
6.9.5: Handling input exceptions: restaurant max occupancy tracker.
If an InputMismatchException exception occurs, the program should get and discard a single string from input. Ex: The input "2
abc 8" should result in 10 occupants. Not all lines are used in the solution.
Mouse: Drag/drop
Keyboard: Grab/release [Spacebar (or Enter). Move
Unused
scnr.next();
scnr.nextLine();
System.out.println("Error");
}
if (totalNumPeople < 0) {
totalNumPeople
0;
}
=
}
catch (InputMismatch Exception e) {
System.out.println("Occupancy: + totalNumPeople);
Check
totalNumPeople += scnr.nextInt ();
catch {
try {
→ Cancel Esc
MaxOccupancy Tracker.java
EzyBooks catalog
import java.util.Scanner;
import java.util.InputMismatchException;
}
public class MaxOccupancyTracker {
public static void main (String [] args) {
Scanner scnr = new Scanner(System.in);
int maxNumPeople
10;
int totalNumPeople = 0;
}
Load default template...
X Failed to compile
MaxOccupancyTracker java:17. error: 'catch' without 'try'
System.out.println("We're full!");
Help/FAQ Sydney Lindsey
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution!
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images

Recommended textbooks for you

Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON

Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science

Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning

Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON

Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science

Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning

Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning

Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education

Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY
Expert Answers to Latest Homework Questions
Q: General accounting question
Q: Need This General Accounting Question without any error
Q: Accounting question ?
Q: SUBJECT = GENERAL ACCOUNTING
Q: General Accounting Question Solution with Better method
Q: General Accounting Question Answer need
Q: General Accounting
Q: The balance in the dividends account is closed to:A. CashB. RevenueC. Retained EarningsD. Common…
Q: What is the effect of writing off an uncollectible account under the allowance method?A. Increases…
Q: What is the effect of writing off an uncollectible account under the allowance method?A. Increases…
Q: What is the normal balance of Accounts Payable?A. DebitB. CreditC. ZeroD. Variespls co
Q: What is the normal balance of Accounts Payable?A. DebitB. CreditC. ZeroD. Variescorrect
Q: What is the normal balance of Accounts Payable?A. DebitB. CreditC. ZeroD. Variescorrect
Q: What is the normal balance of Accounts Payable?A. DebitB. CreditC. ZeroD. VariesNeed
Q: General Accounting Question Solution
Q: Please Make Perfect Answer For this Financial Accounting
Q: Accounting Question Solution
Q: Financial Accounting
Q: General Accounting Question solve without any problem
Q: لا.
Assignniend
abcpain the
the three type of
state- and explaining of the decannolly
you know
+
29…
Q: 1. A W10x60 with sections properties shown is to be used as a column. If the unsupported length is…