python求偶奇数和差编程_选择最大奇数Python

我试图用Python编写一个简单的程序,计算出x,y,z值中最大的奇数。如何给用户一个选择x,y,z值的选项?

所以程序会问x,y,z是什么,然后说“x,y,z是最大的奇数”或者数字都是偶数。

到目前为止,我所掌握的情况如下。这至少是个不错的开始吗?# This program exmamines variables x, y, and z

# and prints the largest odd number among them

if x%2 !== 0 and x > y and y > z:

print 'x is the largest odd among x, y, and z'

elif y%2 !== 0 and y > z and z > x:

print 'y is the largest odd among x, y, and z'

elif z%2 !== 0 and z > y and y > x:

print 'z is the largest odd among x, y, and z'

elif x%2 == 0 or y%2 == 0 or z%2 == 0:

print 'even'

有了thkang post,我现在有了:# This program exmamines variables x, y, and z

# and prints the largest odd number among them

if x%2 !== 0:

if y%2 !== 0:

if z%2 !== 0:

if x > y and x > z: #x is the biggest odd

elif y > z and y > x: #y is the biggest odd

elif z > x and z > y: #z is the biggest odd

else: #z is even

if x > y: #x is the biggest odd

else: #y is the biggest odd

else: #y is even

if z%2 != 0: #z is odd

if x > z: #x is the biggest odd

else: #z is the biggest odd

else: #y,z are even and x is the biggest odd

else: #x is even

if y%2 != 0 and z%2 != 0; #y,z is odd

if y > z: #y is the biggest odd

else: #z is the biggest odd

else: #x and y is even

if z%2 != 0: #z is the biggest odd

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值