4. Give the output for the following code:
i=1
n=5
while i*i < n:
print(2*i+1)
i+=1
Answers
Answered by
0
Answer:
4. Give the output for the following code:
i=1
n=5
while i*i < n:
print(2*i+1)
i+=1
Similar questions