说明:创建一个程序,要求用户输入一系列数字。用户应该输入一个负数来表示系列的结束。输入所有正数后,程序应显示它们的总和。
我正在使用 Python 2,Python IDLE
我为此作业使用了一个while循环。到目前为止,我编写了一个程序,当用户在 while 循环下输入一个正数时,收集该数字并继续添加它,直到用户输入一个负数。我正在尝试找到一种将第一个用户输入包含到程序中的方法。
print('This program calculates the sum of the numbers entered and ends
after inputting a negative number')
total = 0.00
number = float(input('Enter a number: '))
while number >= 0:
print('Enter another positive value if you wish to continue. Enter a
negative number to calculate the sum.')
number = float(input('Enter a number: '))
total = total + number
print('The sum is', total)
慕姐8265434
桃花长相依
相关分类