SOLELY FOLLOW QUESTIONS AND TEMPLATES. MAKE CODE ACCORDING TO THE TEMPLATE PROVIDE AT THE END OF THE QUESTION. MATCH INPUT AND OUTPUT AS IT IS. ------------Start------------------------ Write a program to get the details of n donors like Name, age, height weight, gender, and blood group and display all the donor details. Strictly adhere to the Object-Oriented specifications given in the problem statement. All class names, member variable names, and function names should be the same as specified in the problem statement. The class Donor has the following public attributes. Data Type Variable Name string name int age float height float weight string gender string bloodGroup Include the following member function in Donor class Member Function Description void display(Donor obj[], int n) This method must display the donor details. In the main method, get the details of n number of donors and display all the donor details. Input and Output Format: Refer to the sample input and output for formatting specifications. [All text in bold corresponds to input and the rest corresponds to output] Sample Input and Output 1: Enter the number of donors: 2 Enter the donor details1 Enter the name : Aarav Enter the age : 24 Enter the height : 156.9 Enter the weight : 45.9 Enter the gender : male Enter the Blood Group : B+ Enter the donor details2 Enter the name : Taj Enter the age : 34 Enter the height : 134.5 Enter the weight : 56.7 Enter the gender : male Enter the Blood Group : AB+ Donor details in the hospital database : Donor1 Name :Aarav Age :24 height :156.9 weight :45.9 Gender :male Blood Group :B+ Donor2 Name :Taj Age :34 height :134.5 weight :56.7 Gender :male Blood Group :AB+ Sample Input and Output 2: Enter the number of donors: 1 Enter the donor details1 Enter the name : Vasili Enter the age : 24 Enter the height : 145.6 Enter the weight : 34.5 Enter the gender : female Enter the Blood Group : B+ Donor details in the hospital database : Donor1 Name :Vasili Age :24 height :145.6 weight :34.5 Gender :female Blood Group :B+ --------------End------------- IN ATTACH IMAGE TEMPLATE IS PROVIDED FOR THE " MAIN.CPP AND DONOR.CPP ". KINDLY CHECK BEFORE MAKING CODE
SOLELY FOLLOW QUESTIONS AND TEMPLATES. MAKE CODE ACCORDING TO THE TEMPLATE PROVIDE AT THE END OF THE QUESTION. MATCH INPUT AND OUTPUT AS IT IS.
------------Start------------------------
Data Type | Variable Name |
string | name |
int | age |
float | height |
float | weight |
string | gender |
string | bloodGroup |
Include the following member function in Donor class
Member Function | Description |
void display(Donor obj[], int n) | This method must display the donor details. |
Sample Input and Output 1:
Enter the number of donors:
2
Enter the donor details1
Enter the name :
Aarav
Enter the age :
24
Enter the height :
156.9
Enter the weight :
45.9
Enter the gender :
male
Enter the Blood Group :
B+
Enter the donor details2
Enter the name :
Taj
Enter the age :
34
Enter the height :
134.5
Enter the weight :
56.7
Enter the gender :
male
Enter the Blood Group :
AB+
Donor details in the hospital
Donor1
Name :Aarav
Age :24
height :156.9
weight :45.9
Gender :male
Blood Group :B+
Donor2
Name :Taj
Age :34
height :134.5
weight :56.7
Gender :male
Blood Group :AB+
Sample Input and Output 2:
Enter the number of donors:
1
Enter the donor details1
Enter the name :
Vasili
Enter the age :
24
Enter the height :
145.6
Enter the weight :
34.5
Enter the gender :
female
Enter the Blood Group :
B+
Donor details in the hospital database :
Donor1
Name :Vasili
Age :24
height :145.6
weight :34.5
Gender :female
Blood Group :B+
--------------End-------------
IN ATTACH IMAGE TEMPLATE IS PROVIDED FOR THE " MAIN.CPP AND DONOR.CPP ". KINDLY CHECK BEFORE MAKING CODE
Step by step
Solved in 4 steps with 5 images