sum = 0 n = 1 while True: if n > 20: break sum = sum + 2 ** (n - 1) n = n + 1 print sum
Nick_0031
2014-10-30
0 回答
举报
0/150
提交
取消