. Write a program to print the perfect multiple of both 5 as well as 3, within a user given range, using For loop.
Answers
Answered by
0
Answer:
It is done using python language
Explanation:
limit= 50
for counter in range(limit+1):
if (counter%5==0) and (counter%3==0):
print(counter)
Similar questions