使用while循环,我提示用户输入5个不同的数字,并试图创建这些数字的总和。我如何才能创建这个总和呢?这是目前为止我的代码
count = 1 while count < 5: count += 1 int(input("Enter a value: "))
pkln4tw61#
count = 1 total = 0 while count < 5: count += 1 total += int(input("Enter a value: ")) print (total)
4szc88ey2#
这是一个更小的解决方案,并且使用了for循环
total = 0 for i in range(5): total += int(input("Enter Value : ")) print(f'Your Total is : {total}')
2条答案
按热度按时间pkln4tw61#
4szc88ey2#
这是一个更小的解决方案,并且使用了for循环