Question: The while loop reads values from input until three integers are read. Complete the exception handler in the while loop to catch an InputMismatchException exception

The while loop reads values from input until three integers are read. Complete the exception handler in the while loop to catch an InputMismatchException exception and:
Output "Bad input for manufacture year is discarded". End with a newline.
Discard the invalid input.
Ex: If the input is 1945197620041909, then the output is:
Manufacture year: 1945
Manufacture year: 1976
Manufacture year: 2004
Processed three valid input values
Ex: If the input is 19451976 H 20041909, then the output is:
Manufacture year: 1945
Manufacture year: 1976
Bad input for manufacture year is discarded
Manufacture year: 2004
Processed three valid input values
Note: Each value read from input is on one line.

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!