Computer Science, asked by monkegamingd, 4 days ago

Write a program to accept 5 numbers and display the numbers which are divisible by 3 and 7. Terminate the loop when the user enters a 0 or negative number. (Please its very Urgent)

Answers

Answered by bharat109
1

Answer:

n= int(input (enter number))

if ((n%3))

if ((n%7))

print (n)

Explanation:

plzmark as branliest answers

Similar questions