Question

In C please!: The following equations estimate the calories burned when exercising (source): Men: Calories = ( (Age x 0....

In C please!:

The following equations estimate the calories burned when exercising (source): Men: Calories = ( (Age x 0.2017) — (Weight x 0.09036) + (Heart Rate x 0.6309) — 55.0969 ) x Time / 4.184 Women: Calories = ( (Age x 0.074) — (Weight x 0.05741) + (Heart Rate x 0.4472) — 20.4022 ) 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 men and women. Output each floating-point value with two digits after the decimal point, which can be achieved as follows: printf("%0.2lf", yourValue); Ex: If the input is: 49 155 148 60 the output is: Men: 489.78 calories Women: 580.94 calories

Thank you!!

1 0
Add a comment Improve this question Transcribed image text
✔ Recommended Answer
Answer #1

Below is my code to solve your question. If you are satisfied with the answer, please like

CODE SCREENSHOT:

main.c #include <stdio.h> int main(int argc, char *argv[]) 3-{ 1 2 int age; 4 double weight, heartRate, time; 6 scanf(%d %1f

OUTPUT:

49 155 148 60 Men: 489.78 calories Women: 580.94 calories .. . Program finished with exit code 0 Press ENTER to exit console.

Add a comment
Know the answer?
Add Answer to:
In C please!: The following equations estimate the calories burned when exercising (source): Men: Calories = ( (Age x 0....
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Similar Homework Help Questions
  • In Java The following equations estimate the calories burned when exercising (source): Women: Calories = (...

    In Java 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...

  • 2.18 LAB: Calories burned during workout (expressions) Programming Language : JAVA The following equations estimate the...

    2.18 LAB: Calories burned during workout (expressions) Programming Language : JAVA The following equations estimate the calories burned when exercising (source): Men: Calories = [(Age x 0.2017) — (Weight x 0.09036) + (Heart Rate x 0.6309) — 55.0969] x Time / 4.184 Women: Calories = [(Age x 0.074) — (Weight x 0.05741) + (Heart Rate x 0.4472) — 20.4022] x Time / 4.184 Write a program using inputs age (years), weight (pounds), heart rate (beats per minute), and time (minutes)....

  • 2.24 LAB: Expression for calories burned during workout 2.24 LAB: Expression for calories burned during workout...

    2.24 LAB: Expression for calories burned during workout 2.24 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 with inputs age (years), weight...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT