Jump to content

Long Division


erifash
 Share

Recommended Posts

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!

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...