Write an if-else statement with multiple branches. If givenYearis 2101 or greater, print “Distant future” (without quotes). Else,if givenYear is 2001 or greater (2001-2100), print “21st century”.Else, if givenYear is 1901 or greater (1901-2000), print “20thcentury”. Else (1900 or earlier), print “Long ago”. Do NOT end withnewline.
code given:
import java.util.Scanner;
public class YearChecker {
public static void main (String [] args) {
int givenYear;
givenYear = 1776;
/* Your solution goes here */
}
}
Solution
import java.util.Scanner;public class YearChecker { public static void main(String[] args) { int givenYear; givenYear =
OR
OR