Computer Science, asked by karthikae284, 7 days ago

14.
Choose the correct for loop to display multiples of 10 from 236 to 155.​

Answers

Answered by KesavanCSE
0

Answer:

In python:

n=16

while(n> 15 && n< 23):

print(n*10)

Similar questions