Computer Science, asked by jason26, 10 months ago

Write a program to print all the even numbers between 13 and 31 using Do...Until loop​

Answers

Answered by Ambarsariya
0

Answer:

For i in range(13,32):

If i%2==0:

Print (i)

Similar questions