Computer Science, asked by mutturevula4267, 11 months ago

Find the output of the following code. i = 1, s = 1 while (i <= 5) { s = s + 1. i = i + 2 }

Answers

Answered by max20
0

Answer:

you did not write print statement.

if it is after the loop

s=4

i=7

Similar questions