Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C++ Your solution will consist of the following four files: HeartRates.h (class specification file) HeartRates.cpp (class implementation file) 200_assign4.cpp (application program) 200_assign4.pdf (sample runs) For
C++
Your solution will consist of the following four files: HeartRates.h (class specification file) HeartRates.cpp (class implementation file) 200_assign4.cpp (application program) 200_assign4.pdf (sample runs) 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 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. 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 Sample run 2: Please enter first and last name (separated by spaces): Han Solo Please enter month, day, and year of birth (separated by spaces): 4 1 1980 First Name: Han Last Name: Solo Date of Birth: 4/1/1980 Please enter today's month, day, and year: 19 6 2017 Age: 37 Maximum Heart Rate: 183 Target Heart Rate: 91-155
Step 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