Computer Science, asked by arpitdubey399, 2 months ago

what is the output of the following program?
i=0
s=0
while (i <=10)
if i%2==0
s+=i
i+=i​

Answers

Answered by rumeemahanta
0

Answer:

s=0,1,2,3,4,5,6,7,8,9,10

i=0,2,4,6,8,10,12,14,16,18,20

I hope this will help you.

Similar questions