//Devon Kile //csap period 4 //sept.19.2002 //project 3 #include #include void main() { //inputing the make and model of your car------------------ apstring make; apstring model; cout<<"enter the make of your car "; cin>>make; cout<<"enter the model of your car "; cin>>model; //done inputing make and model of car------------------------ //----------license plate to id section---------------------------------------- //declare variables for the lincense plate to id part char letter1; char letter2; char letter3; int answer; int answer2; int answer3; int number; cout<<"enter the first 3 charichters of your license plate -use CAPITAL LETTERS- "; cin>>letter1>>letter2>>letter3; answer=letter1+letter2+letter3; //calculates the integer value of letters 123 cout<<"enter the 3 digit number part of your license plate "; cin>>number; answer2 = answer+number; //calculates letters 123 + the second part of the license plate answer3= answer2%26 +65 ; // outputing the make and model of the car cout<<"make = "<