Python program to find the maximum EVEN number

Discovering greatest EVEN number: Here, we are going to actualize a python program that will include N number and locate the most extreme EVEN number.

Info N whole number numbers and we need to locate the most extreme much number.

There are numerous methods for doing this yet this time, we need to thought of most computationally proficient calculation to do as such.

Python code to locate the most extreme 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

Leave a Comment

error: Alert: Content is protected!!