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