n = 100
s = 0
c = 1
while c <= n:
s = s + c
c = c + 1
print("1 到 %d 之和为: %d" % (n, s))
文章标签 python 一个整数的个位数 文章分类 Python 后端开发
n = 100
s = 0
c = 1
while c <= n:
s = s + c
c = c + 1
print("1 到 %d 之和为: %d" % (n, s))
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M