Have 2 CS files, and do in C# please! While exercising, you can use a heart rate monitor to see that your heart rate st
Posted: Mon Jun 06, 2022 5:32 pm
Have 2 CS files, and do in C# please!
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. The formula for calculating your maximum heart rate in
beats per minute is 220 minus your age in years. Your target heart
rate in beats per minute is 50-85% of your maximum heart rate.
heartbeats.cs
Create a class called HeartBeats. The class properties should
include the person's
first name, last name, year of birth and 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 methods that calculate
and return the
person's minimum and maximum target heart rates.
test.cs:
Write a test class that prompts for the person's information,
instantiates an object of
class HeartBeats 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.
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. The formula for calculating your maximum heart rate in
beats per minute is 220 minus your age in years. Your target heart
rate in beats per minute is 50-85% of your maximum heart rate.
heartbeats.cs
Create a class called HeartBeats. The class properties should
include the person's
first name, last name, year of birth and 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 methods that calculate
and return the
person's minimum and maximum target heart rates.
test.cs:
Write a test class that prompts for the person's information,
instantiates an object of
class HeartBeats 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.