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 |
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images