mymc/round.py
AKuHAK ddfa6a79f9 Update sources to 2.7 from author's website
http://www.csclub.uwaterloo.ca:11068/mymc/
-updated to use Python 2.7 and Visual C++ 2008 runtime
-add a rename command to the command line interface
-a few minor bugs fixed
2022-09-15 12:04:48 +03:00

22 lines
299 B
Python
Executable File

#
# round.py
#
# By Ross Ridge
# Public Domain
#
# Simple rounding functions.
#
_SCCS_ID = "@(#) mymc round.py 1.3 07/04/17 02:10:27\n"
def div_round_up(a, b):
return (a + b - 1) / b
def round_up(a, b):
return (a + b - 1) / b * b
def round_down(a, b):
return a / b * b