python odd_Python程序查找最大ODD数

博客探讨了如何在Python中高效地找出一组整数中的最大奇数,强调了算法的计算效率。提供了相应的Python代码实现。
摘要由CSDN通过智能技术生成

python odd

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

输入N个整数,我们必须找到最大的奇数。

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

有很多方法可以做到这一点,但是这一次,我们必须考虑到计算效率最高的算法。

Python代码查找最大ODD数 (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)
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值