1到500的和
while
b=0
i=1
while i<=500:
b=i+b
i=i+1
print('\t',b)
高斯
def sum1(n):
ans=(1+n)*n/2
print('\t',ans)
sum1(500)
for
a=0
for x in range(1,501):
a=x+a
print('\t',a)
函数
def sum (x,y):
c=0
while x<=y:
c=x+c
x=x+1
print('\t',c)
sum(1,500)