Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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:

image text in transcribed

Sample run 2:

image text in transcribed

Sample run 3:

image text in transcribed

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Beginning Microsoft SQL Server 2012 Programming

Authors: Paul Atkinson, Robert Vieira

1st Edition

1118102282, 9781118102282

Students also viewed these Databases questions

Question

=+What is your previous foreign address?

Answered: 1 week ago