From 48e573a91ac5a05690986d3bea36857cdc25cc85 Mon Sep 17 00:00:00 2001 From: amitjuneja2103 <65065528+amitjuneja2103@users.noreply.github.com> Date: Mon, 4 Oct 2021 20:20:52 +0530 Subject: [PATCH] Create maxoddno.py --- maxoddno.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 maxoddno.py 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)