Exercise Calorie Burn Calculator





This calculator first retrieves the exercise, weight, and duration entered by the user and calculates the calories burned based on the following formulae:

Aerobics or Bicycling: (7.5 * weight * duration) / 60

Jogging or Swimming: (8 * weight * duration) / 60

Walking: (4.5 * weight * duration) / 60

Finally, it displays the calculated calories burned in the “Calories Burned” field using the toFixed() method to round the result to two decimal places.

Note: This exercise calorie burn calculator is for informational purposes only and should not be used as a substitute for medical advice. If you have any concerns about your exercise or caloric needs, please consult a healthcare professional.

Leave a Comment