Running on a particular treadmill you burn 3.9 calories per minute. Design a program that uses a loop to display the number of calories burned after 10, 15, 20, 25, and 30 minutes. Show in both Pthon and Flowchart in screenshot!!
-
Running on a particular treadmill you burn 3.9 calories per minute. Design a
program that uses a loop to display the number of calories burned after 10, 15, 20, 25, and 30 minutes.
Show in both Pthon and Flowchart in screenshot!!
Here's a Python program that uses a loop to calculate and display the number of calories burned after 10, 15, 20, 25, and 30 minutes on a treadmill that burns 3.9 calories per minute:
# Set the calories burned per minute
calories_per_minute = 3.9
# Loop through the desired time intervals
for time in [10, 15, 20, 25, 30]:
# Calculate the calories burned for the current time interval
calories_burned = calories_per_minute * time
# Display the result
print(f"After {time} minutes on the treadmill, you burned {calories_burned:.2f} calories.")
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 3 images