Question
assignment.cpp #include #include #include HeartRates.h using namespace std; // IMPLEMENT THE APPLICATION PROGRAM // IMPLEMENT THE APPLICATION PROGRAM // IMPLEMENT THE APPLICATION PROGRAM HeartRates.cpp #include
assignment.cpp
#include
// IMPLEMENT THE APPLICATION PROGRAM // IMPLEMENT THE APPLICATION PROGRAM // IMPLEMENT THE APPLICATION PROGRAM
HeartRates.cpp
#include
// IMPLEMENT THE CLASS IMPLEMENTATION FILE // IMPLEMENT THE CLASS IMPLEMENTATION FILE // IMPLEMENT THE CLASS IMPLEMENTATION FILE
HeartRates.h
#include
class HeartRates {
private: std::string firstName; // user's first name std::string lastName; // user's last name int birthMonth; // user's birth month int birthDay; // user's birth day int birthYear; // user's birth year int currentMonth; // current month int currentDay; // current day int currentYear; // current year // IMEPLEMENT THE REST OF THE CLASS SPECIFICATION FILE // IMEPLEMENT THE REST OF THE CLASS SPECIFICATION FILE // IMEPLEMENT THE REST OF THE CLASS SPECIFICATION FILE };
#endif
Your solution should use all three files listed above.
For your fourth programming assignment you will be writing the following C++ program:
The formula for calculating your maximum heart rate in beats per minute is 220 minus your age in years. Your target heart rate is a range that is 5085% of your maximum heart rate. Create a class called HeartRates. The class attributes should include the persons first name, last name and date of birth (consisting of separate attributes for the month of birth, day of birth, and year of birth). Your class should have a constructor that receives this data as parameters. For each attribute provide set and get functions.
The class also should include a function getAge that calculates and returns the persons age (in years), a function getMaxiumumHeartRate that calculates and returns the persons maximum heart rate and a function getTargetHeartRate that calculates and returns the persons target heart rate. Function getAge should prompt the user to enter the current month, day and year before calculating the persons age.
Write an application program that prompts for the persons information, creates an object of class HeartRates and prints the information from that objectincluding the persons first name, last name and date of birththen calculates and prints the persons age in (years), maximum heart rate and target-heart-rate range.
Sample run 1:
Sample run 2:
Sample run 3:
Please enter First and last name (separated by spaces) Optimus Prime Please enter month, day, and year of birth (separated by spaces): 12 11 1946 First Name: Optimus Last Name: Prime Date of Birth: 12/11/1946 Please enter today's month, day, and year: 9 6 2017 Age 70 Maximum Heart Rate: 150 Target Heart Rate: 75-127Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started