Answer:
#include <iostream>
using namespace std;
int main() {
int carYear;
carYear = 1995;
if(carYear < 1968)
cout << "Probably has few safety features." << endl;
if(carYear > 1970)
cout << "Probably has head rests." << endl;
if(carYear > 1992)
cout << "Probably has anti-lock brakes." << endl;
if(carYear > 2000)
cout << "Probably has airbags." << endl;
return 0;
}
Explanation:
Output:
Probably has anti-lock brakes.
Probably has airbags.