Blood bank wants to display a Welcome and a Thank you message for all their Blood donors as a symbol of respect. Write a C++ program to accomplish the task using Constructor and Destructor. 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 data members Variable Name name age height weight number_of_units_donated Data Type string int float float int Create a default constructor to display the message "Welcome to the Blood Bank" Display all the details of the donor using a display function in the Donor class Member Function void display() Description This function is used to display all the details of the donor. Create a public destructor that displays the message "Thank you for donating the Blood" In the main method obtain the donor details as input from the user and display the details calling the display method. Input and Output Format: Refer to the sample input and output for formatting specifications.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter11: Inheritance And Composition
Section: Chapter Questions
Problem 1PE: In Chapter 10, the class clockType was designed to implement the time of day in a program. Certain...
icon
Related questions
Question

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  )

----------------- TEMPLATES BELOW FOR SOLUTION -----------------------

 

main.cpp template


using namespace std;
int main(){
// fill your code here
}

 

donor.cpp template

#include<iostream>
using namespace std;
class Donor{
public:
string name;
int age;
float height;
float weight;
int no_of_units_donated;

//fill your code here

void display(){


//fill your code here


}

//fill your code here


};

ABC Blood bank wants to display a Welcome and a Thank you message for all their Blood donors as a
symbol of respect.
Write a C++ program to accomplish the task using Constructor and Destructor.
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 data members
Data Type
Variable Name
string
lint
name
float
float
int
age
|height
weight
number_of_units_donated
Create a default constructor to display the message "Welcome to the Blood Bank"
Display all the details of the donor using a display function in the Donor class
Member Function
void display()
Description
This function is used to display all the details of the donor.
Create a public destructor that displays the message "Thank you for donating the Blood"
In the main method obtain the donor details as input from the user and display the details calling the
display method.
Input and Output Format:
Refer to the sample input and output for formatting specifications.
[All text in bold are input and the remaining are output]
Sample Input and Output 1:
Welcome to the Blood Bank
Enter the donor details
Enter the Name:
Anjana
Enter the Age:
34
Enter the height:
5.8
Enter the weight:
55.0
Enter the No of units donated:
Donor details:
Anjana
34
5.8
55.0
2
Thank you for donating the Blood
Sample Input and Output 2:
Welcome to the Blood Bank
Enter the donor details
Enter the Name:
Aarthi
Enter the Age:
31
Enter the height:
5.2
Enter the weight:
52.0
Enter the No of units donated:
1
Donor details:
Aarthi
31
5.2
52.0
1
Thank you for donating the Blood
Transcribed Image Text:ABC Blood bank wants to display a Welcome and a Thank you message for all their Blood donors as a symbol of respect. Write a C++ program to accomplish the task using Constructor and Destructor. 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 data members Data Type Variable Name string lint name float float int age |height weight number_of_units_donated Create a default constructor to display the message "Welcome to the Blood Bank" Display all the details of the donor using a display function in the Donor class Member Function void display() Description This function is used to display all the details of the donor. Create a public destructor that displays the message "Thank you for donating the Blood" In the main method obtain the donor details as input from the user and display the details calling the display method. Input and Output Format: Refer to the sample input and output for formatting specifications. [All text in bold are input and the remaining are output] Sample Input and Output 1: Welcome to the Blood Bank Enter the donor details Enter the Name: Anjana Enter the Age: 34 Enter the height: 5.8 Enter the weight: 55.0 Enter the No of units donated: Donor details: Anjana 34 5.8 55.0 2 Thank you for donating the Blood Sample Input and Output 2: Welcome to the Blood Bank Enter the donor details Enter the Name: Aarthi Enter the Age: 31 Enter the height: 5.2 Enter the weight: 52.0 Enter the No of units donated: 1 Donor details: Aarthi 31 5.2 52.0 1 Thank you for donating the Blood
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Introduction to Template
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr