Computer Science, asked by jason26, 1 year 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