MENU
Question -

Define a class Bus in C++ with the following specifications:
Data Members
•  Busno—to store Bus No
•  From—to store Place name of origin
•  To—to store Place name of destination
•  Type—to store Bus Type such as ‘O’ for ordinary
•  Distance—to store the Distance in Kilometers
•  Fare—to store the Bus Fare
Member Functions
• A constructor function to initialize Type as ‘O’ and Freight as 500
• A function CalcFare( ) to calculate Fare as per the following criteria
Type        Fare
‘O’            15*Distance
‘E’            20*Distance
‘L’            24*Distance
• A function Allocate() to allow user to enter values for BusNo, From, To, Type and Distance.   



Answer -

class Bus
 {
 int Busno; 
char From [20]; 
charTo[20]; 
char Type; 
float Distance;
 float Fare, ;    [1]
 BUS ( )
 {
 Type='O';
 Fare=500;
 }
 void CalcFare( )    [1]
 {
 if(Type=='O')
 Fare = 15*Distance;  
if (Type=='E')
 Fare = 20* Distance;
 if(Type=='L')
 Fare = 24*Distance;
 void Allocate( ) [1]
 {
 cout<<''Enter  Bus Number"; cin>>Busno; 
cout<<''Enter Source:"; gets(From);
 cout<<''Enter  Destination"; gets(To); 
cout<<''Enter Type:"; cin>>Type; 
cout<<''Enter Distance (in kms)"; cin>>Distance;
 }
 }; [1]

Comment(S)

Show all Coment

Leave a Comment

Free - Previous Years Question Papers
Any questions? Ask us!
×