You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
328 B
18 lines
328 B
# test floor-division and modulo operators
|
|
|
|
@micropython.viper
|
|
def div(x:int, y:int) -> int:
|
|
return x // y
|
|
|
|
@micropython.viper
|
|
def mod(x:int, y:int) -> int:
|
|
return x % y
|
|
|
|
def dm(x, y):
|
|
print(div(x, y), mod(x, y))
|
|
|
|
for x in (-6, 6):
|
|
for y in range(-7, 8):
|
|
if y == 0:
|
|
continue
|
|
dm(x, y)
|
|
|