sum = 0
x = 0
while True:
x = x + 1
if x > 100:
break
if x % 2 == 0:/
continue / 这3断为什么屏蔽了偶数只计算奇数?
sum = sum + x /
print sum
hehehehehehehehe
相关分类