我必须在python中编写一个关于这个问题的程序:
要求用户为他们的假日俱乐部储蓄提供初始余额 帐户。将提示用户输入11个存款金额。产量 帐户中的最终金额。
这就是我到目前为止所失去的。我不知道要添加什么才能获得最终金额。我也不知道如何制作11个存款的数字。
balance = int(input("Enter initial balance: $"))
count = 1
numDep = 11
finalAmount = balance+numDep
while count <= 11:
n = int(input("Enter deposit #:")) # this needs to show deposits numbers up to 11
count += 1
print("Original price: $", balance)
print("Final Amount: $", finalAmount)
这就是我使用while-loop
编写程序的全部内容。我仍然需要使用for-loop
来编写它。
答案 0 :(得分:4)
你需要找到总数。
testBeanListMap
使用For循环:
http://localhost:8080/Struts2Test/test?testBeanHolder.testBeanListMap[0][0].value=1
答案 1 :(得分:1)
这是使用for循环。
balance = int(input("Enter the initial balance"))
beginning = balance
for i in range(1,11):
n = int(input(("Deposit"+str(i))))
balance += n
print("You had", beginning, "at the beginning")
print("Now, you have", balance)