write a program to display the multiples of 8 from 5 to 15 using a while loop
Answers
Answered by
0
Answer:
a = 5
while a <= 15:
if a % 8 == 0:
print (a)
a += 1
Attachments:
Similar questions