120k views
4 votes
Clunker Motors Inc. is recalling all vehicles from model years 1995-1998 and 2004-2006. A bool variable named recalled has been declared. Given an int variable modelYear write a statement that assigns true to recalled if the value of modelYear falls within the two recall ranges (the first range being 1995-1998, the second range being 2004-2006) and assigns false otherwise.

User Paulguy
by
3.7k points

1 Answer

6 votes

Answer:

if((modelYear > 1994 && modelYear < 1999 )||(modelYear > 2003 && modelYear < 2007 )){

norecall = false;

}else{

norecall = true;

}

User PEF
by
3.5k points