Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

#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

#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

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

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

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

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

image text in transcribed

image text in transcribed

The formula for calculating your maximum heartrate in beats per minute is 220 minus your age in years. Your target heart rate is a range that is 50-85% of your maximum heart rate. Create a class called HeartRates. The class attributes should include the person's 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 person's age (in years), a function getMaxiumumHeartRate that calculates and returns the person's maximum heart rate and a function getTargetHeartRate that calculates and returns the person's target heart rate. Function getAge should prompt the user to enter the current month, day and year before calculating the person's age Write an application program that prompts for the person's information, creates an object of class HeartRates and prints the information from that object including the person's first name, last name and date of birth-then calculates and prints the person's age in (years), maximum heart rate and target-heart-rate range

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Students also viewed these Databases questions