diff --git a/maxoddno.py b/maxoddno.py new file mode 100644 index 0000000..197b3ca --- /dev/null +++ b/maxoddno.py @@ -0,0 +1,16 @@ +# 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)