1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
#include <iostream>
#include <string>
using namespace std;
class VEHICLE{
private:
char company[20];
char model[20];
int year;
int engin;
public:
VEHICLE();
void display(char[],char[],int,int);
void get_input(char[],char[],int,int);
void set_vehicle(char[],char[],int,int);
void get_vehicle(char[],char[],int*,int*);
~VEHICLE()
{
cout<<"Object Deleted"<<endl;
}
};
VEHICLE::VEHICLE()
{
strcpy_s(company,"sarmad");
strcpy_s(model,"ali");
year = 0;
engin = 0;
}
void VEHICLE::set_vehicle(char comp[],char mod[],int y,int eng)
{
strcpy_s(company,comp);
strcpy_s(model,mod);
year = y;
engin = eng;
}
void VEHICLE::get_vehicle(char comp[],char mod[],int *y,int *eng)
{
strcpy(comp,company);
strcpy(mod,model);
*y = year;
*eng = engin;
}
void VEHICLE::display(char comp[],char mod[],int y,int eng)
{
get_vehicle(comp,mod,&y,&eng);
cout<<"Company: "<<comp<<endl;
cout<<endl;
cout<<"Model: "<<mod<<endl;
cout<<endl;
cout<<"Year: "<<y<<endl;
cout<<endl;
cout<<"Engin Capcity In Cc: "<<eng<<endl;
cout<<endl;
}
void VEHICLE::get_input(char comp[],char mod[],int y,int eng)
{
cout<<"Please Enter The Name Of Vehicle Maker Company: ";
cin>>comp;
cout<<endl;
cout<<"Please Enter the Model Of The Vehicle: ";
cin>>mod;
cout<<endl;
cout<<"Please Enter The Year Of Registration: ";
cin>>y;
cout<<endl;
cout<<"Please Enter The Engin Capacity: ";
cin>>eng;
cout<<endl;
set_vehicle(comp,mod,y,eng);
}
int main()
{
char comp[20];
char mod[20];
int y = 0;
int eng = 0;
int vnum = 0;
VEHICLE* vehiptr (NULL);
cout<<"Please Enter The Number Of Vehicle: ";
cin>>vnum;
cout<<endl;
try
{
vehiptr = new VEHICLE[vnum];
}
catch(exception const &e)
{
cout << "Error: A " << e.what( ) << " was thrown"<<endl;
}
for(int a=0;a<vnum;a++)
{
cout<<"VEHICLE "<<a+1<<endl;
cout<<endl;
vehiptr[a].get_input(comp,mod,y,eng);
}
for(int i =0;i<vnum;i++)
{
cout<<"VEHICLE ["<<i+1<<']'<<endl;
cout<<endl;
vehiptr[i].display(comp,mod,y,eng);
}
cout<<endl;
delete [] vehiptr;
cout<<endl;
system("pause");
}
|