Answer:
Explanation:
In C++ language the program would be
#include <iostream>
using namespace std;
int main(){
int input = 0;
cin >>input>>;
if( input < 1969 ){
cout << "Few safety features."<<endl;
} else if(input < 1990){
cout << "Probably has seat belts."<<endl;
} elseif (input < 2000){
cout << "Probably has antilock brakes."<<endl;
}else {
cout << "Probably has airbags."<<endl;
}
return 0;
}