Question
PYTHON EXERCISE 1: Simplistic Design! Use simplistic methods to design the following code A. Create a change-counting game that gets the user to enter the
PYTHON EXERCISE 1: Simplistic Design! Use simplistic methods to design the following code
A. Create a change-counting game that gets the user to enter the number of coins required to make exactly one dollar. The program should prompt the user to enter the number of pennies, nickels, dimes, and quarters. If the total value of the coins entered is equal to one dollar, the program should congratulate the user for winning the game. Otherwise, the program should display a message indicating whether the amount entered was more than or less than one dollar.
B. Write a program that calculates and displays a persons body mass index (BMI). The BMI is often used to determine whether a person is overweight or underweight for his or her height. A persons BMI is calculated with the following formula:
BMI=weight x 703 /height
where weight is measured in pounds and height is measured in inches. The program should ask the user to enter his or her weight and height, then display the users BMI. The program should also display a message indicating whether the person has optimal weight, is underweight, or is overweight. A persons weight is considered to be optimal if his or her BMI is between 18.5 and 25. If the BMI is less than 18.5, the person is considered to be underweight. If the BMI value is greater than 25, the person is considered to be overweight.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started