Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

getting multiple of 5 python

def isMultipleof5(n):

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

    if ( n == 0 ):
        return 1

    return 0
 
PREVIOUS NEXT
Tagged: #multiple #python
ADD COMMENT
Topic
Name
6+1 =