Computer Science, asked by tezigem, 7 hours ago

Write an algorithm for a no whether it's divisible by 14 or not?

Answers

Answered by YusiferZendric
1

Answer:

easy

Explanation:

def divisbleby14detector(n):

return n%14==0

Similar questions