返回列表 發帖
s=0
n=1
while(n<=10):
    s+=n
    n+=1
    print("1+2+3+4+5+6+7+8+9+10={}".format(s))

TOP

返回列表