Computer Science, asked by apandas, 8 months ago

how to write an algorithm that will display the multiples of 5 from 1 to 30

Answers

Answered by RuwaisnZaid
2

Explanation:

for i in range(1,31):

if i%5==0:

print("multiple of 5",I)

plz follow me

mark me as brainly

Similar questions