Question: Jump to level 1 Write multiple if statements: If carYear is before 1967, print Probably has few safety features. (without quotes). If after 1969, print
Jump to level 1 Write multiple if statements: If carYear is before 1967, print "Probably has few safety features." (without quotes). If after 1969, print "Probably has head rests.". If after 1992, print "Probably has anti-lock brakes.". If after 2000, print "Probably has airbags.". End each phrase with period and newline. Ex: carYear = 1995 prints: Probably has head rests. Probably has anti-lock brakes. 1 import java.util.Scanner; 2 public class SafetyFeatures { 3 4 public static void main (String[] args) { 5 int carYear; 6 7 Scanner input = new Scanner(System.in); 8 carYear - input.nextInt(); 9 carYear=1995; if (carYear1992) { 15 System.out.println("Probably has anti-lock brakes.");) 16 if (carYears-2000) 17 System.out.println("Probably has airbags.");} 18 > 19 Check Try again
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
