Find the output of the following code. i = 1, s = 1 while (i <= 5) { s = s + 1. i = i + 2 }
Answers
Answered by
0
Answer:
you did not write print statement.
if it is after the loop
s=4
i=7
Similar questions