Skip to content
Snippets Groups Projects
Commit 2725ea58 authored by Uyamikun's avatar Uyamikun
Browse files

add division feature

parent ba1f24aa
1 merge request!3[Feature #4] add division feature
def division(x,y):
# [PARAM]
# x,y: integer
# [DESC]
# return division value of two integers
if(y == 0):
return False
else:
return x/y
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment