how do i get the calories to bet the only thing in the output IT 140: Introduction to Scripting v3 home >1.22: LAB: Expression for calories burned during workoutE zyBooks catalog? Help/FAQ 8...


how do i get the calories to bet the only thing in the output


Home<br>1-2 Discussion: Introductioi X<br>zy Section 1.22 - IT 140: Introc X<br>C This ZyLab Activity Prepare ×<br>C 2.31 LAB: Expression For C X<br>Answered: Python The follo X<br>+<br>3.<br>learn.zybooks.com/zybook/SNHUIT140V3/chapter/1/section/22<br>Update :<br>M<br>Apps M Gmail<br>SNHU<br>Mail - Eddy, Matth...<br>zy zyBooks My library b My Questions | ba.<br>E Reading List<br>= zyBooks<br>My library > IT 140: Introduction to Scripting v3 home ><br>1.22: LAB: Expression for calories burned during workout<br>E zyBooks catalog<br>? Help/FAQ 8 Matthew Eddy<br>Run your program as often as you'd like, before submitting for grading. Below, type any needed<br>input values in the first box, then click Run program and observe the program's output in the<br>Develop mode<br>Submit mode<br>second box.<br>Enter program input (optional)<br>| 49<br>155<br>148<br>60<br>main.py<br>(Your program)<br>Run program<br>Input (from above)<br>Output (shown below)<br>Program output displayed here<br>Age : weight: Heart Rate: Time: Calories: 736.21 calories<br>Signature of your work<br>What is this?<br>6/28.. M--<br>T-<br>W-<br>-- |0-- R---<br>-- |0--|0-- |0-- ..7/1<br>Feedback?<br>V 1.23 LAB: Warm up: Variables, input, and type conversion<br>

Extracted text: Home 1-2 Discussion: Introductioi X zy Section 1.22 - IT 140: Introc X C This ZyLab Activity Prepare × C 2.31 LAB: Expression For C X Answered: Python The follo X + 3. learn.zybooks.com/zybook/SNHUIT140V3/chapter/1/section/22 Update : M Apps M Gmail SNHU Mail - Eddy, Matth... zy zyBooks My library b My Questions | ba. E Reading List = zyBooks My library > IT 140: Introduction to Scripting v3 home > 1.22: LAB: Expression for calories burned during workout E zyBooks catalog ? Help/FAQ 8 Matthew Eddy 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 Develop mode Submit mode second box. Enter program input (optional) | 49 155 148 60 main.py (Your program) Run program Input (from above) Output (shown below) Program output displayed here Age : weight: Heart Rate: Time: Calories: 736.21 calories Signature of your work What is this? 6/28.. M-- T- W- -- |0-- R--- -- |0--|0-- |0-- ..7/1 Feedback? V 1.23 LAB: Warm up: Variables, input, and type conversion
Home<br>1-2 Discussion: Introductioi X<br>zy Section 1.22 - IT 140: Introc X<br>C This ZyLab Activity Prepare ×<br>C 2.31 LAB: Expression For C X<br>Answered: Python The follo X<br>+<br>3.<br>learn.zybooks.com/zybook/SNHUIT140V3/chapter/1/section/22<br>Update :<br>M<br>Apps M Gmail<br>SNHU<br>Mail - Eddy, Matth...<br>zy zyBooks My library b My Questions | ba.<br>E Reading List<br>= zyBooks<br>My library > IT 140: Introduction to Scripting v3 home ><br>1.22: LAB: Expression for calories burned during workout<br>E zyBooks catalog<br>? Help/FAQ 8 Matthew Eddy<br>The following equation estimates the average calories burned for a person when exercising, which is based on a scientific journal article<br>(source):<br>Calories = ( (Age x 0.2757) + (Weight x 0.03295) + (Heart Rate x 1.0781) – 75.4991) x Time / 8.368<br>Write a program using inputs age (years), weight (pounds), heart rate (beats per minute), and time (minutes), respectively. Output the<br>average calories burned for a person.<br>Output each floating-point value with two digits after the decimal point, which can be achieved as follows:<br>print('Calories: {:.2f} calories'.format(calories))<br>Ex: If the input is:<br>49<br>155<br>148<br>60<br>then the output is:<br>Calories: 736.21 calories<br>247772.1999362.qx3zqy7<br>LAB<br>1.22.1: LAB: Expression for calories burned during workout<br>0/ 10<br>АCTIVITY<br>main.py<br>Load default template..<br>1 Age=int(input(

Extracted text: Home 1-2 Discussion: Introductioi X zy Section 1.22 - IT 140: Introc X C This ZyLab Activity Prepare × C 2.31 LAB: Expression For C X Answered: Python The follo X + 3. learn.zybooks.com/zybook/SNHUIT140V3/chapter/1/section/22 Update : M Apps M Gmail SNHU Mail - Eddy, Matth... zy zyBooks My library b My Questions | ba. E Reading List = zyBooks My library > IT 140: Introduction to Scripting v3 home > 1.22: LAB: Expression for calories burned during workout E zyBooks catalog ? Help/FAQ 8 Matthew Eddy 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.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: print('Calories: {:.2f} calories'.format(calories)) Ex: If the input is: 49 155 148 60 then the output is: Calories: 736.21 calories 247772.1999362.qx3zqy7 LAB 1.22.1: LAB: Expression for calories burned during workout 0/ 10 АCTIVITY main.py Load default template.. 1 Age=int(input("Age : ")) 2 Weight=int(input("weight: ")) 3 Heart=int(input("Heart Rate: ")) 4 Time=int(input("Time: ")) 5 Calories (CAge * 0.2757) + (Weight * 0.03295) + (Heart * 1.0781) - 75.4991 )* Time / 8.368 7 print('Calories: {:.2f} calories'.format(Calories))
Jun 11, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here