Find detailed and accurate answers to your questions on IDNLearn.com. Ask your questions and receive prompt, detailed answers from our experienced and knowledgeable community members.

x = int(input ("Enter a value: "))

c = 0

sum = 0

What of the following best describe the loop?
while (x != 0):

x = int(input ("Enter a value: "))

c = c + 1

sum = sum + x

print ("\n\nSum: " + str(sum))