Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Using c++ There is a formula that will calculate your target heart rate zone for aerobic exercise Lower limit (bpm) 60% of the difference between
Using c++
There is a formula that will calculate your target heart rate zone for aerobic exercise Lower limit (bpm) 60% of the difference between 220 and your age upper limit (bpm)-75% of the difference between 220 and your age As with the previous exercises, create a new file, 1abe1_ex3.cpp Your program will take a users age from standard input (cin), and output (cout) their target heart rate zone, showing both the lower and upper limits, as floating-point values. (Note that if a floating point value is an exact whole number -i.e. the decimal part is exactly.0-C+ will drop the decimal in the display; so 731.0 will display as 731). Example: (user input is bold and underlined): What is your age? 25 Your target heart rate is between 117 and 146.25 bpm 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