Question: CHALLENGE ACTIVITY 3 . 3 . 2 : If - else statements. Jump to level 1 1 2 Write multiple if statements: If carYear is

CHALLENGE ACTIVITY 3.3.2: If-else statements. Jump to level 112 Write multiple if statements: If carYear is before 1968, print "Probably has few safety features." (without quotes). If after 1970, print "Probably has head rests.". If after 1992, print "Probably has electronic stability control.". If after 2002, print "Probably has tire-pressure monitor.". End each phrase with period and newline. Ex: carYear =1995 prints: Probably has head rests. Probably has electronic stability control. 1 import java.util.Scanner; 2 public class SafetyFeatures {34 public static void main(String [] args){5 int carYear; 67 Scanner input = new Scanner(System.in); 8 carYear = input.nextInt(); 910* Your code goes here */1112}13}12 Check Next

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 Programming Questions!