请综合使用while True和break,计算0~1000以内,所有偶数的和
(python中没有“++”的运算符,所以自增自减要用“+=”)
a = 0
s = 0
while True:
if a > 1000:
break
if a % 2 == 0:
s += a
a += 1
print(s)
(python中没有“++”的运算符,所以自增自减要用“+=”)
a = 0
s = 0
while True:
if a > 1000:
break
if a % 2 == 0:
s += a
a += 1
print(s)