实现1*2+3*4+5*6+7*8...+99*100
Posted 村长
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实现1*2+3*4+5*6+7*8...+99*100相关的知识,希望对你有一定的参考价值。
total = 0 x = 1 y = 2 while y <= 100: total += x * y x += 2 y += 2 print(total)
以上是关于实现1*2+3*4+5*6+7*8...+99*100的主要内容,如果未能解决你的问题,请参考以下文章