- 2 29 Lab Expression For Calories Burned During Workout The Following Equations Estimate The Calories Burned When Exerci 1 (137.93 KiB) Viewed 29 times
2.29 LAB: Expression for calories burned during workout The following equations estimate the calories burned when exerci
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
2.29 LAB: Expression for calories burned during workout The following equations estimate the calories burned when exerci
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. Output calories burned for women and men. Output each floating-point value with two digits after the decimal point, which can be achieved as follows: System.out.printf("%.2f", yourValue); Ex: If the input is: 49 155 148 60 the output is: Women: 580.94 calories Men: 891.47 calories 417856.2527814.qx3zqy7 LAB ACTIVITY 1 import java.util.Scanner; 3 public class LabProgram { 4 public static void main(String[] args) { /* Type your code here. */ 5 6 2.29.1: LAB: Expression for calories burned during workout 8} 9 Develop mode Submit mode LabProgram.java Enter program input (optional) If your code requires input values, provide them here. 0/10 Load default template... Run your program as often as you'd like, before submitting for grading. Below, type any needed input values in the first box, then click Run program and observe the program's output in the second box.