Computer Science, asked by imshanayakhosla, 2 months ago

write a program to display the multiples of 8 from 5 to 15 using a while loop​

Answers

Answered by imtiyazallam
0

Answer:

a = 5

while a <= 15:

   if a % 8 == 0:

       print (a)

   a += 1

Attachments:
Similar questions