हिंदी
तमिलनाडु बोर्ड ऑफ सेकेंडरी एज्युकेशनएचएससी विज्ञान कक्षा ११

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 - Computer Science

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:

  1. Rno // Data member to storeroom number.
  2. Name // Data member to store user name.
  3. Charges // Data member to store per day charge.
  4. Days //Data member to store the number of days.
  5. 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();

}

shaalaa.com
Introduction to Classes
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 14: Classes and objects - Evaluation - Section - D [पृष्ठ २४७]

APPEARS IN

सामाचीर कलवी Computer Science [English] Class 11 TN Board
अध्याय 14 Classes and objects
Evaluation - Section - D | Q 2. | पृष्ठ २४७
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×