Answer:
if ((modelYear>=1999 && modelYear<=2002 && modelName=="Extravagant") || (modelYear>=2004 && modelYear<=2007 && modelName=="Guzzler")) // checking the condition
{
cout << "RECALL"; // display
}
Explanation:
Following are the description of Program