博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python二分法查找程序_Python程序查找最大EVEN数
阅读量:2534 次
发布时间:2019-05-11

本文共 975 字,大约阅读时间需要 3 分钟。

python二分法查找程序

Input N integer numbers and we have to find the maximum even 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代码查找最大EVEN数 (Python code to find the maximum EVEN number )

# Python code to find the maximum EVEN number n = 0		# loop counternum = 0		# to store the inputmaxnum = 0	# to store maximum EVEN number# loop to take input 10 numberwhile n<10:    num = int(input("Enter your number: "))    if num%2 == 0:        if num > maxnum:            maxnum = num    n += 1# printing the 	maximum even numberprint("The maximum EVEN number :",maxnum)

Output

输出量

Enter your number: 100Enter your number: 222Enter your number: 12Enter your number: 333Enter your number: 431Enter your number: 90Enter your number: 19Enter your number: 56Enter your number: 76Enter your number: 671The maximum EVEN number : 222

翻译自:

python二分法查找程序

转载地址:http://rttzd.baihongyu.com/

你可能感兴趣的文章
笛卡尔遗传规划Cartesian Genetic Programming (CGP)简单理解(1)
查看>>
mysql 日期时间运算函数(转)
查看>>
初识前端作业1
查看>>
为啥程序会有bug?
查看>>
跨域技术
查看>>
JS里的居民们7-对象和数组转换
查看>>
计算两个日期的时间间隔,返回的是时间间隔的日期差的绝对值.
查看>>
python初体验
查看>>
配置vue,vue脚手架的应用(老版本)
查看>>
linux下防火墙iptables原理及使用
查看>>
经典C面试真题精讲
查看>>
Remove Duplicates from Sorted List解题报告
查看>>
ffmpeg格式转换命令
查看>>
万方数据知识平台 TFHpple +Xpath解析
查看>>
Hive实现oracle的Minus函数
查看>>
秒杀多线程第四篇 一个经典的多线程同步问题
查看>>
RocketMQ配置
查看>>
vs code调试console程序报错--preLaunchTask“build”
查看>>
蚂蚁金服井贤栋:用技术联手金融机构,形成服务小微的生态合力
查看>>
手机通话记录统计分析
查看>>