Computer Science, asked by jyojovial, 8 months ago

Write a program which will find all such numbers which are divisible by 7 but are not a multiple of 5, between 2000 and 320 (both included) the numbers obtained should be printed in a coma separated seque

Answers

Answered by Anonymous
7

Answer:

its a python program

Explanation:

#program which will find all such numbers which are divisible by 7 but are not a multiple of 5, between 2000 and 320

for i in range(320,2001):

    if i%7==0 and i%5!=0:

        print(i,",",end="")

#HOPE IT HELPS YOU

PLEASE MARK BRAINLIEST

Similar questions