MENU
Question -

Define a class Tourist in C + + with the following specifications:
Data Members
•  Carno—to store Bus No
•  Origin—to store Place name of origin
•  Destination—to store Place name
•  Type—to store Car Type such as ‘E’ for Economy
•  Distance—-to    store the Distance in Kilometers
•    Charge—to store the Car Fare
Member Functions
• A constructor function to initialize Type as ‘E’ and Freight as 250
• A function CalcCharges () to calculate Fare as per the following criteria
Type              Fare
‘E’             16* Distance
‘K’             22* Distance
T’              30*Distance

• A function Enter( ) to allow user to enter values for CarNo, Origin, Destination, Type and Distance. Also, this function should call CalcCharges () to calculate fare.
• A function Show() to display contents of all data members on the screen. [Delhi, 2013]



Answer -

class Tourist
 {
 int Carno; char Origin[20]; 
char Destination[20]; 
char Type; 
float Distance;
 float Charges;
 Tourist ( )    [1]
{
 Type='E';
 int charges=250;
 }
 void CalcCharges( )
 {
 if(Types=='E')
 Charges = 16*Distance; if(Type=='A')
 Charges = 22‘Distance; if(Type=='L')
 Charges = 30*Distance;
 }
 void Enter( )
 {
 cout<<''Enter Car Number"; cin>>Carno;
 cout<<''Enter Source:"; gets(Origin);
 cout<<''Enter Destination"; gets(Destination);
 cout<<''Enter Type:"; cin>>Type;
 cout<<''Enter Distance (in
 kms) " ;    [1]
 cin>>Distance;
 CalcCharges( );
 }
 void Show( )
{
 cout<< "Car Number:"<
 cout<< "Origin:";
 puts(Origin);
 cout<< "Destination:";
 puts(Destination);
 cout<<"Fare:"<
 }
 };    [1]

Comment(S)

Show all Coment

Leave a Comment

Free - Previous Years Question Papers
×