erifash Posted October 3, 2005 Posted October 3, 2005 Have you ever wanted to do long division (to get to alot of decimal places, more than a computer could handle) but just couldn't figure out a quick way to see how many times a number goes into another evenly? Well, here is a function called ModPlus that will help you with that problem. Just call_ModPlus( < numerator > , < denominator > )to use it. Here's the code: Func _ModPlus($n, $d) Return ( $n - Mod($n, $d) ) / $d EndFunc I hope it helps! My UDFs:_FilePrint() | _ProcessGetName() | _Degree() and _Radian()My Scripts:Drive Lock - Computer Lock Using a Flash DriveAU3Chat - Simple Multiuser TCP ChatroomStringChunk - Split a String Into Equal PartsAutoProxy - Custom Webserver
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now