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...
icon
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
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
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
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
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 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)
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
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY

Expert Answers to Latest Homework Questions

Q: Describe an online marketing tactics for a smartwatch company. What tools and resources will you use…
Q: do fast i will 20 upvotes.my different accounts if correct.
Q: 3) For the signal f[k] shown below: (a) Write a single expression for f[k] which is valid for all k.…
Q: do fast i will 20 upvotes.
Q: The following financial information is from Shovels Construction Company. Accounts payable Buildings…
Q: Problem solve
Q: NEED help with this
Q: Please provide Solutions provide Answer with Explanation
Q: 9:11 SMMM History of Outdoor Education Objectives: Identify and describe the history and evolution…
Q: 9:09 > SMM く Assignment: % N 5G+ 100% Outdoor Edu... % home.ogburn.org 1. Every activity, game, or…
Q: 9:09 MMM Objectives: Identify the unique safety rules and practices for a designated outdoor…
Q: 9:07 MMM d) Provide all of the resources available to you for this activity, including specific…
Q: 9:05 > AMMM You may choose from this list, or request approval for a different activity by sending a…
Q: 9:02 > AMMM Step 15: Scavenger Hunt Directions: Complete questions A-I and submit your responses in…
Q: What is a good response to? Indirect expenses, termed overhead costs, are vital for business…
Q: A teaspoon of the carbohydrate sucrose (common sugar) contains 15.6 Calories. What is the mass of…
Q: 8:57 > MSM Objective: Create an extended original work of nonfiction that is informative,…
Q: You can also download the image file from…
Q: Dissolving 2.97 g of CaCl2(s) in 143.8 g of water in a calorimeter at 22.3 °C causes the temperature…
Q: 8:54 MSM く % N 5G+ 100% English II home.ogburn.org ☐ ⠀ Directions: Follow each step below to…
Q: You can also download the image file from…