Making-a-Difference Exercises

  1. 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.ly/AHATargetHeartRates), 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. [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 Heart-Rates 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.

  2. 4.15 (Computerization of Health Records) A health-care issue that has been in the news lately is the computerization of health records. This possibility is being approached cautiously because of sensitive privacy and security concerns, among others. [We address such concerns in later exercises.] Computerizing health records could make it easier for patients to share their health profiles and histories among their various health-care professionals. This could improve the quality of health care, help avoid drug conflicts and erroneous drug prescriptions, reduce costs and, in emergencies, could save lives. In this exercise, you’ll design a “starter” HealthProfile class for a person. The class attributes should include the person’s first name, last name, gender, date of birth (consisting of separate attributes for the month, day and year of birth), height (in inches) and weight (in pounds). Your class should have a constructor that receives this data. For each attribute provide a property with set and get accessors. The class also should include methods that calculate and return the user’s age in years, maximum heart rate and target-heart-rate range (see Exercise 4.14), and body mass index (BMI; see Exercise 3.31). Write an app that prompts for the person’s information, instantiates an object of class HealthProfile for that person and displays the information from that object—including the person’s first name, last name, gender, date of birth, height and weight—then calculates and displays the person’s age in years, BMI, maximum heart rate and target-heart-rate range. It should also display the “BMI values” chart from Exercise 3.31.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset