The sum of all even numbers between 2 and 100 (inclusi. ... sum = 0. for i in range(0, 101):. if i%2 == 0: sum = sum + i.
確定! 回上一頁