07while循环

#___author:  
#date: 2021/6/9
#while #循环
# a = 0
# while a <=100:
# print(a,end="\t")
# a +=2
b = 0
c = 0
while b<=100:
c = c + b
b+=1
print(c)
posted @ 2021-07-28 09:16  幻奇  阅读(29)  评论(0)    收藏  举报