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 #include #include "HeartRates.h" using namespace std;

// IMPLEMENT THE APPLICATION PROGRAM // IMPLEMENT THE APPLICATION PROGRAM // IMPLEMENT THE APPLICATION PROGRAM

HeartRates.cpp

#include #include #include "HeartRates.h" using namespace std;

// IMPLEMENT THE CLASS IMPLEMENTATION FILE // IMPLEMENT THE CLASS IMPLEMENTATION FILE // IMPLEMENT THE CLASS IMPLEMENTATION FILE

HeartRates.h

#include #ifndef HEARTRATES_H #define HEARTRATES_H

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:

assignment.cpp #include #include #include "HeartRates.h" using namespace std; // IMPLEMENT THE APPLICATION

Sample run 2:

PROGRAM // IMPLEMENT THE APPLICATION PROGRAM // IMPLEMENT THE APPLICATION PROGRAM HeartRates.cpp

Sample run 3:

#include #include #include "HeartRates.h" using namespace std; // IMPLEMENT THE CLASS IMPLEMENTATION

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-127

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!