Add 计算程序检测

zlf_branch
p4m9yiulv 5 months ago
parent 7015ce342e
commit a1e962ef17

@ -0,0 +1,5 @@
# 计算从 1 到 100 的和
total = 0
for i in range(1, 101):
total += i
print("1 到 100 的和是:", total)
Loading…
Cancel
Save