python二分法查找程序_Python程序查找最大EVEN数
生活随笔
收集整理的這篇文章主要介紹了
python二分法查找程序_Python程序查找最大EVEN数
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
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 counter num = 0 # to store the input maxnum = 0 # to store maximum EVEN number# loop to take input 10 number while n<10:num = int(input("Enter your number: "))if num%2 == 0:if num > maxnum:maxnum = numn += 1# printing the maximum even number print("The maximum EVEN number :",maxnum)Output
輸出量
Enter your number: 100 Enter your number: 222 Enter your number: 12 Enter your number: 333 Enter your number: 431 Enter your number: 90 Enter your number: 19 Enter your number: 56 Enter your number: 76 Enter your number: 671 The maximum EVEN number : 222翻譯自: https://www.includehelp.com/python/find-the-maximum-even-number.aspx
python二分法查找程序
總結
以上是生活随笔為你收集整理的python二分法查找程序_Python程序查找最大EVEN数的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 固件的完整形式是什么?
- 下一篇: java scanner_Java Sc