NAVANA LIMITED has imported 50 new TOYOTA COROLLA CROSS.
So, the Managing Director has instructed the concerned department to keep all the information
of these 50 cars for future development and statistics. For that reason, the GM of Sales and
Marketing department has marked out the mandatory information which are Customer_Name,
NID_Number, Purchase_Date, Engine_No, Registration_No. Also, they want some
functionality which are like inserting the information, showing all the sold list of Car and
Changing the ownership of the car. Now develop a solution using C++ to help NAVANA
LIMITED implementing this system following the below instructions.
Here is program:
int main()
{
string Customer_Name;
int NID_Number;
int Purchase_Date;
int Engine_No;
int Registration_No;
cin >> Customer_Name;
cin >> NID_Number;
cin >> Purchase_Date;
cin >> Engine_No;
cin >> Registration_No;
}
Comments
Leave a comment