Computer Science, asked by williambarnes, 1 year ago

What is output?

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

print (sum)

Answers

Answered by ShivanshAggarwal
1
the output for the following commands will be
41121

williambarnes: thanks! your a life savior
ShivanshAggarwal: welcome
Answered by chibecc
1

the output will be

21

Similar questions