Computer Science, asked by jamesmcguire2005, 3 months ago

c = 1
sum = 0
while (c < 10):
c = c + 3
sum = sum + c

print (sum)
what is output?

Answers

Answered by TheSarcasticSmile
26

Answer:

11 will be the output

Explanation:

Hope it helps you

Similar questions