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!!

Programming with Microsoft Visual Basic 2017
8th Edition
ISBN:9781337102124
Author:Diane Zak
Publisher:Diane Zak
Chapter3: Coding With Variables, Named Constants, And Calculations
Section: Chapter Questions
Problem 1MQ9
icon
Related questions
Question
  1. 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!!

Expert Solution
Step 1

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

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 3 images

Blurred answer
Knowledge Booster
Concept of Flowchart
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning