medical charts and assinging codes
Question # 6
Math Formula
What is the output of this program? Assume the user enters 2, 5, 1, and 6.
numA = 0
for count in range(4):
answer = input ("Enter a number: ")
fltAnswer = float(answer)
numA = numA + fltAnswer
print (numA)
Answer:
14.0
Explanation:
The loop converts each answer to a float. The accumulator variable adds the values entered.
2.0 + 5.0 + 1.0 + 6.0 = 14.0
Answer:
14.0
Explanation:
Edge 2021