Q:

Python program to find the maximum ODD number

belongs to collection: Python basic programs

0

Input N integer numbers and we have to find the maximum odd 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 ODD number

# Python code to find the maximum ODD number 

n = 0		# loop counter
num = 0		# to store the input
maxnum = 0	# to store maximum ODD 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 ODD number
print("The maximum ODD number :",maxnum)

Output

Enter your number: 121
Enter your number: 234
Enter your number: 561
Enter your number: 800
Enter your number: 780
Enter your number: 870
Enter your number: 122
Enter your number: 345
Enter your number: 679
Enter your number: 986
The maximum ODD number : 679

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 solution of a special s... >>
<< Python program to find the maximum EVEN number...