Question: PYTHON 1. (biggest_num.py) Write a program that prompts the user for 3 integer values. The program should display the numbers in descending order. Be sure

PYTHON
PYTHON 1. (biggest_num.py) Write a program that prompts the user for 3

1. (biggest_num.py) Write a program that prompts the user for 3 integer values. The program should display the numbers in descending order. Be sure to handle the case where the user enters the same number for 2 or 3 of the values. NOTE: You must use if statements (if, if/else, if elif), no use of loops or the sort method permitted! Sample run #1 First number? 56 Second number? 88 Third number? 12 Descending order: 88 56 12 Sample run #2 First number? 5 Second number? -10 Third number? -5 Descending order: 5 -5 -10 Sample run #3 First number? 2 Second number? 1 Third number? 2 Descending order: 2 2 1

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!