how to write an algorithm that will display the multiples of 5 from 1 to 30
Answers
Answered by
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