Q:

Python program to find the maximum EVEN number

belongs to collection: Python basic programs

0

Input N integer numbers and we have to find the maximum even number.

There are many ways of doing this but this time, we have to thought of most computationally efficient algorithm to do so.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Python code to find the maximum EVEN number

# Python code to find the maximum EVEN number 

n = 0		# loop counter
num = 0		# to store the input
maxnum = 0	# to store maximum EVEN number

# loop to take input 10 number
while n<10:
    num = int(input("Enter your number: "))
    if num%2 == 0:
        if num > maxnum:
            maxnum = num
    n += 1

# printing the 	maximum even number
print("The maximum EVEN number :",maxnum)

Output

Enter your number: 100
Enter your number: 222
Enter your number: 12
Enter your number: 333
Enter your number: 431
Enter your number: 90
Enter your number: 19
Enter your number: 56
Enter your number: 76
Enter your number: 671
The maximum EVEN number : 222

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Python basic programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Python program to find the maximum ODD number... >>
<< Python program to find greatest integer using floo...