1--100数字相加
count = 0
s = 1
while count <= 100:
s = s + count
count += 1
print(s)
posted on 2020-05-15 17:28  金刚哪吒  阅读(6169)  评论(0)    收藏  举报