Write a C++ program to the donor and address details and display it. The class Address has the following public data members. Data Type string string string string Variable street city state country The class Donor has the following public data members. Data Type string int float Address Variable name age height address Include the following method in the Donor class. Method void displayDetails() Member Function To display all the details of a donor. In the main() method, obtain address and donor details from the user in the console and display it by calling displayDetails() method in Donor class. [All text in bold corresponds to input and rest corresponds to output] Sample Input and Output 1: Enter the name: Riya Enter the age: 22 Enter the height: 155.5 Enter the weight: 47 Enter the street: 2b,NWStreet Enter the city : Provo Enter the state: Utah Enter the country: America Name :Riya Age :22 Height:155.5 Weight :47 Street :2b,NWStreet City :Provo State :Utah Country :America
QUESTION PROVIDED IN ATTACH IMAGE KINDLY SEE. PROVIDE OUTPUT AS IT IS SHOWN IN QUESTION.
AND BELOW TEMPLATES PROVIDED CHECK THIS BEFORE MAKING SOLUTION ( main.cpp , donor.cpp , address.cpp )
----------------- TEMPLATES BELOW FOR SOLUTION -----------------------
MAIN.CPP TEMPLATE
#include <iostream> int main()
|
Donor.cpp TEMPLATE
#include <iostream> class Donor
} |
Address.cpp TEMPLATE
#include <iostream> class Address |
![Dev is a third-year MBBS student in Provo. His College has planned to conduct the 4th International
Conference on Advancement in Hematology and Oncology. Doctors and people who involved in social
activities from all over the world were invited to this conference. They also have a session for blood
donation awareness in this conference where all the participants can donate their blood.
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.
Write a C++ program to the donor and address details and display it.
The class Address has the following public data members.
Data Type
string
string
string
string
Variable
street
city
state
country
The class Donor has the following public data members.
Data Type
string
int
Variable
name
float
Address
age
height
address
Include the following method in the Donor class.
Method
Member Function
void displayDetails()
To display all the details of a donor.
In the main() method, obtain address and donor details from the user in the console and display it by
calling displayDetails() method in Donor class.
[All text in bold corresponds to input and rest corresponds to output]
Sample Input and Output 1:
Enter the name:
Riya
Enter the age:
22
Enter the height:
155.5
Enter the weight:
47
Enter the street :
2b,NWStreet
Enter the city:
Provo
Enter the state:
Utah
Enter the country:
America
Name :Riya
Age :22
Height:155.5
Weight :47
Street :2b,NWStreet
City :Provo
State :Utah
Country :America](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F8c25729a-1e93-4e66-ac0f-a14f9c5cbd04%2F6be9d211-f6a7-42aa-8535-f6a3013ef281%2Fgsondsn_processed.png&w=3840&q=75)

Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images









