Question: (+20) Write a python program that asks the user for four integers and displays: The integers The maximum integer The minimum integer The even integers

(+20) Write a python program that

asks the user for four integers and displays:

The integers

The maximum integer

The minimum integer

The even integers (if x %2 == 0 then x is even)

The odd integers

The number of integers greater than 10

The positive integers

The negative integers

The average of the smallest and largest integers

Please review the source code tab for a strategy to display the integers that are even/odd OR >10/<=10 required in lab 03

EXAMPLE OUTPUT

If the user entered 20 -8 17 -5 then display

The integers are 20 -8 17 -5

The maximum integer is 20

The minimum integer is -8

The even integers are 20 -8

The odd integers are 17 -5

The number of integers greater than 10 is 2

The positive integers 20 17

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!