
LAB ACTIVITY 2.29.1: LAB: Expression for calories burned during workout 0/10 LabProgram.java Load default template. Some types of regulations, such as Maximum Achievable Control Technology (MACT) standards, explicitly use costs in determining their stringency. The following equations estimate the calories burned when exercising: Women: Calories ( (Age x 0.074) (Weight x 0.05741) + (Heart Rate x 0.4472) 20.4022 ) x Time / 4.184 Men: Calories ( (Age x 0.2017) + (Weight x 0.09036) + (Heart Rate x 0.6309) 55.0969 ) x Time / 4.184 Write a program with inputs age (years), weight (pounds), heart ra.

LAB 2.14.1: LAB: Expression for calories burned during workout V ACTIVITY 10 / 10 main.py Load default. Below, type any needed input values in the ±rst box, then click Run program and observe the programs output in the second box. 1.20 LAB: Expression for calories burned during workout The following equations estimate the calories burned when exercising (source): Women: Calories ( (Age x 0.074) (Weight x 0.05741) + (Heart Rate x 0.4472) 20.4022 ) x Time / 4.184 Men: Calories ( (Age x 0.2017) + (Weight x 0.09036) + (Heart Rate x 0. View 2.14.1 LAB.png from CIS 012 at Pasadena City College. Output each floating-point value with two digits after the decimal point, which can be achieved as follows: ("%.2f", yourValue) Ex: If the input is: 49 155 148 60 the output is: Women: 580.94 calories Men: 891.47 calories LAB: Expression for calories burned during workout 2/3 Run your program as often as youd like, before submitting for grading. Output calories burned for women and men.

2.29 LAB: Expression for calories burned during workout The following equations estimate the calories burned when exercising (source): Women: Calories = ((Age x 0.074) – (Weight x 0.05741) + (Heart Rate x 0.4472) – 20.4022) x Time / 4.184 Men: Calories = ((Age x 0.2017) + (Weight x 0.09036) + (Heart Rate x 0.6309) – 55.0969) x Time / 4.184 Write a program using inputs age (years), weight (pounds), heart rate (beats per minute), and time (minutes), respectively. Engineering Computer Science The following equation estimates the average calories burned for a person when exercising, which is based on a scientific journal article (source): Calories ( (Age x 0.2757) + (Weight x 0.03295) + (Heart Rate x 1.0781) 75.4991 ) x Time / 8.
