Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please provide the code for this. This is all done in C#, in Visual Studio 2019 Edition. There are also other mandatory requirements below: There

image text in transcribed

Please provide the code for this. This is all done in C#, in Visual Studio 2019 Edition. There are also other mandatory requirements below:

There must be a change: Do NOT have an attribute for the current year (and hence in the app, do not have your user enter the current year, nor would the current year be a parameter for the constructor). Instead, when calculating the age, use C#s "DateTime.Now.Year" property.

Additions: - Have other properties for a persons weight and height. This data should be included as parameters for the constructor and the values for the height and the user should also enter the weight in your app. - Have a property that calculates the BMI. In the app, the BMI should be a part of the information that is displayed for the object.

Making-a-Difference Exercises 4.14 (Target-Heart-Rate Calculator) While exercising, you can use a heart-rate monitor to see that your heart rate stays within a safe range suggested by your trainers and doctors. According to the American Heart Association (AHA) (http://bit. 7y/AHATargetHeartRates), the formula for calculating your maximum heart rate in beats per minute is 220 minus your age in years. Your target beart rate is a range that is 5085% of your maximum heart rate. [Note: These formulas are estimates provided by the AHA. Maximum and target heart rates may vary based on the health, fitness and gender of the individual. Always consult a physician or qualified health care professional before beginning or modifying an exercise program.] Create a class called HeartRates. The class attributes should include the person's first name, last name, year of birth and the current year. Your class should have a constructor that receives this data as parameters. For each attribute provide a property with set and get accessors. The class also should include a property that calculates and returns the person's age (in years), a property that calculates and returns the person's maximum heart rate and properties that calculate and return the person's minimum and maximum target heart rates. Write an app that prompts for the person's information, instantiates an object of class HeartRates and displays the information from that object-including the person's first name, last name and year of birth-then calculates and displays 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 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

Students also viewed these Databases questions