#37771: python 解


s210195@student.cysh.cy.edu.tw (陳嘉振)

學校 : 不指定學校
編號 : 244760
來源 : [163.27.3.88]
最後登入時間 :
2023-11-24 11:40:35
d490. 我也愛偶數 -- 板橋高中教學題 | From: [163.27.3.88] | 發表日期 : 2023-10-06 11:51

a, b = map(int, input().split())
total = 0
if a % 2 != 0:
    a += 1
for i in range(a, b+1, 2):
    total += i
print(total)

將數字限制為偶數

如果不是偶数,则将其增加1

 
ZeroJudge Forum