Clunker Motors Inc. is recalling all vehicles from model years 1995-1998 and 2004-2006. A boolean variable named recalled has been declared .

LANGUAGE: JAVA

CHALLENGE:

Clunker Motors Inc. is recalling all vehicles from model years 1995-1998 and 2004-2006. A boolean variable named recalled has been declared . Given a variable modelYear write a statement that assigns true to recalled if the value of modelYear falls within the two recall ranges and assigns false otherwise.

Do not use an if statement in this exercise!

SOLUTION:

LANGUAGE: JAVA

CHALLENGE:

Clunker Motors Inc. is recalling all vehicles from model years 1995-1998 and 2004-2006. A boolean variable named recalled has been declared . Given a variable modelYear write a statement that assigns true to recalled if the value of modelYear falls within the two recall ranges and assigns false otherwise.

Do not use an if statement in this exercise!

SOLUTION:

recalled = ((modelYear >= 1995 && modelYear <= 1998) || ( modelYear >= 2004 && modelYear <= 2006));