Question: E 1 1 0 : Principles of Programming with Java [ Online ] home > multiple features with branches Jump to level 1 Write multiple

E 110: Principles of Programming with Java [Online] home > multiple features with branches
Jump to level 1
Write multiple if statements:
If carYear is before 1968, print "Probably has few safety features." (without quotes).
If after 1970, print "Probably has seat belts."
If after 1990, print "Probably has anti-lock brakes.".
If after 2001, print "Probably has airbags.".
End each phrase with period and newline. Ex: carYear =1995 prints:
Probably has seat belts.
Probably has anti-lock brakes.
import java.util.scanner;
public class SafetyFeatures {
public static void main (String [] args) f
int caryear;
Scanner input = new Scanner(
System.in);
caryear = input. nextint () ;
if (carYear 1968){
}
System.out.print("Probably has few safety features.");
if caryear >1970
}
system.out.print("Probably has seat belts.");
if (carYear >1990){
}
System, out.print("Probably has anti-lock brakes.");
if (carYear >2001){
system, out.print("Probably has airbags.");
else
 E 110: Principles of Programming with Java [Online] home > multiple

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!