Advertisements
Advertisements
प्रश्न
Define a class RESORT with the following description in C++ :
Private members:
Rno // Data member to storeroom number
Name //Data member to store user name
Charges //Data member to store per day charge Days //Data member to store the number of days Compute( )/*A function to calculate a total amount as Days * Charges and if the total amount exceeds 11000 then the total amount is 1.02 * Days *Charges */
Public member:
GetInfo( ) /* Function to Read the information like name , room no, charges and days*/
DispInfo( )/* Function to display all entered details and total amount calculated using COMPUTE function*/
उत्तर
Private members:
- Rno // Data member to storeroom number.
- Name // Data member to store user name.
- Charges // Data member to store per day charge.
- Days //Data member to store the number of days.
- Compute () // A function to calculate a total amount as Days * Charges and if the //total amount exceeds 11000 then the total amount is 1.02 * Days ’’’ Charges.
Public member:
getinfo() // Function to Read the information like name, room no, charges and days dispinfo () // Function to display all entered details and total amount calculated
//using COMPUTE function
//include
//include
//include
Class RESORT
{
Private:
int Rno;
char name [20];
float charges; int days; float compute();
Public:
void getinfoO;
void dispinfo();
}
void RESORT: : getinfo()
{
cout << “Enter Registration number:”; cin >> Rno.;
cout << “\n Enter name:”; gets(name);
cout << “\n Enter per day charges:”; cin >> charges;
cout << “\n Enter number of days:”; cin >> days;
}
void RESORT: : dispinfo()
{
cout << “\n1. Registration number:” << Rno << “\n2. Name:”; puts(name);
cout << “\n3. charges per day:” << charges << “\n4. Number of days:” <<days;
cout<< “\n5. Amount:” << compute();
}
long float;
amount = charges*days;
if (amount> 11000)
amount = 1,02*days*charges;
return amount;
}
RESORT obj;
void main()
{
clrscr();
obj.getinfo();
obj.dispinfoQ;
getch();
}
APPEARS IN
संबंधित प्रश्न
What are called members?
Differentiate structure and class though both are user-defined data types.
What is the difference between the class and object in terms of oop?
Why it is considered good practice to define a constructor though a compiler can automatically generate a constructor?
The variables declared inside the class are known as ______.
A member function can call another member function directly, without using the dot operator called as ______
The member function defined within the class behaves like ______ functions.
Which of the following access specifier protects data from inadvertent modifications?
Rewrite the following program after removing the syntax errors if any and underline the errors:
#include<iostream>
$include<stdio>
class mystud
{ int studid =1001;
char name[20];
public
mystud( ) { }
void register ( )
{cin>>stdid; gets(name); }
void display ( )
{cout<<studid<<”: “<<name<<endl;}
}
int main( ) { mystud MS; register.MS( ); MS.display( ); }
int main( )
{ mystud MS;
register.MS( );
MS.display( );
}
Write the output of the following
#include<iostream>
using namespace std;
class student
{
int rno, marks;
public: student(int r, int m)
{
cout << "Constructor " << endl;
rno = r;
marks = m;
}
void printdet()
{
marks = marks + 30;
cout << "Name: Bharathi" << endl;
cout << "Roll no : "<<rno << "\n";
cout << "Marks : "<<marks << endl;
}
};
int main()
{
student s(14,70);
s.printdet();
cout << "Back to Main";
return 0;
}