please code in java.. dont use very advanced coding 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 × 1.0781) - 75.4991 ) × Time / 8.368 Write a program using inputs age (years), weight (pounds), heart rate (beats per minute), and time (minutes), respectively. Output the average calories burned for a person. 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: Calories: 736.21 calories
please code in java.. dont use very advanced coding
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 × 1.0781) - 75.4991 ) × Time / 8.368
Write a program using inputs age (years), weight (pounds), heart rate (beats per minute), and time (minutes), respectively.
Output the average calories burned for a person.
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:
Calories: 736.21 calories
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 2 images