Question: Write multiple if statements: If carYear is before 1968, print Probably has few safety features. (without quotes). If after 1969, print Probably has seat belts..
Write multiple if statements: If carYear is before 1968, print "Probably has few safety features." (without quotes). If after 1969, print "Probably has seat belts.". If after 1991, print "Probably has electronic stability control.". If after 2000, print "Probably has airbags.". End each phrase with period and newline. Ex: carYear = 1995 prints:
Probably has seat belts. Probably has electronic stability control.
code:
public class SafetyFeatures { public static void main (String [] args) { int carYear;
carYear = 1991;
/* Your solution goes here */
} }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
