sum = 0
x = 0
n = 1
while True:
n = 2*n - 1
x = x + 1
if x < n:
continue
n = n + 1
sum = sum + x
if x > 100:
break
print sum
请问,哪里出错了?
孤独的小猪
大咪
相关分类