Posted by pat on 08:35:00 10-16-2003
I have a problem because I need an algorithm
for dividing big integers (10^100) and I can't find it. If anyone have some information about it I would be very pleased. I can't use any libraries
thx
Posted by sacah on 17:01:00 10-16-2003
Maybe you can elaborate a bit more, on things like, how you get this big number, why you need to divide it, what output do you need etc.
This will just help us figure out a work around or code that will help.
(-:
Posted by pat on 04:45:00 10-17-2003
I needed this for a programming contest, but now it's to late . The task was that I get 2 big numbers
Posted by Neu[Mann] on 05:29:00 10-17-2003
Java has java.math.BigInteger class which would have done what you wanted, and very easily. If only you mentioned what language you were using
It's a standard class of de Java2 SDK so it's technically not a library.
[ This Message was edited by: Neu[Mann] on 2003-10-17 05:29 ]
Posted by pat on 07:28:00 10-17-2003
Thanks for info about java , but I was using C.
Posted by Neu[Mann] on 07:53:00 10-17-2003
Okay! I understand now
I thought you coded it in Java but left the division part
[ This Message was edited by: Neu[Mann] on 2003-10-17 14:31 ]
Posted by sacah on 13:23:00 10-17-2003
I love the java class names, java.math.BigInteger How good is that.
(-;