185k views
4 votes
What is the output of this program? Assume the user enters 3, 6, and 11.

numA = 0
for count in range(3):
answer = input ("Enter a number: ")
fitAnswer = float(answer)
numA = numA + fltAnswer
print (numA)
Output:

User JimiLoe
by
6.0k points

1 Answer

6 votes

Answer:

14.0

Step-by-step explanation:

User Kivagant
by
6.1k points