Answers for "getting multiple of 5 python"

0

getting multiple of 5 python

def isMultipleof5(n):

    while ( n > 0 ):
        n = n - 5

    if ( n == 0 ):
        return 1

    return 0
Posted by: Guest on June-04-2020

Code answers related to "getting multiple of 5 python"

Python Answers by Framework

Browse Popular Code Answers by Language