Question: Integer birthYear is read from input. Complete the try block to throw an exception with the message Error: Unacceptable input for year of birth if

Integer birthYear is read from input. Complete the try block to throw an exception with the message "Error: Unacceptable input for year of birth" if birthYear is less than 1970. import java.util.Scanner;
public class BirthYear {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
int birthYear;
try {
birthYear = scnr.nextInt();
if (birthYear <1970){
throw /* Your code goes here */;
}
System.out.print("Valid input: ");
System.out.println("Year of birth is "+ birthYear);
}
catch (Exception excpt){
System.out.println(excpt.getMessage());
}
}
}

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!