4.5.2 计算用户输入的数字的总和
下面的程序让用户输入一些数字,然后打印出这些数字的总和。
① 这是使用for循环的版本:
# forsum.py
n = int(input(‘How many numbers to sum?‘))
total = 0
for i in range(n):
s = input(‘Enter number ‘ + str(i + 1) + ‘:‘)
total = total + int(s)
print(‘The sum is ‘ + str(total))
② 这是使用while循环的版本
# whilesum.py
n = int(input(‘How many numbers to sum?‘))
total = 0
i = 1
while i <= n:
s = input(‘Enter number ‘ + str(i) + ‘:‘)
total = total + int(s)
i = i + 1
print(‘The sum is ‘ + str(total))
同样,while循环版本比for循环版本更复杂些。
时间: 2024-10-09 09:21:26