# To check whether the given no is completely divisible by 13 or not. (sub)

DECLARE SUB CHECK(n)
CLS
INPUT " enter any number ";n
CALL CHECK(n)
END

SUB CHECK (n)
IF n MOD 13=0 THEN
PRINT "the given no is divisible by 13"
ELSE
PRINT "the given no is not divisible by 13"
END IF
END SUB

Comments

Popular posts from this blog