Computer Science, asked by yanit123, 1 month ago

. 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 bdsketch25
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
Math, 9 months ago