3
votes
2answers
104 views
Java/Scala BigInteger Pasting
I have a problem with the Java BigInteger class: I can't paste a large value into BigInteger. For example, let's say I want to assign a BigInteger to this number:
265252859812191 …
0
votes
2answers
100 views
Can I construct a BigInt with any byte array (Scala)?
I'm trying to represent the result of an MD5 hash in the shortest possible string. It seems a waste to just turn it into a hex string and let G through Z go to waste.
One idea I h …
4
votes
2answers
103 views
Is BigInteger immutable or not?
In .NET 4 beta 2, there is the new Numerics namespace with struct BigInteger. The documentation states that it is an immutable type, as I would have expected.
But I'm a little c …
0
votes
3answers
123 views
Problems with java.math.BigInteger
I have the following code at the head of a method:
BigInteger foo = BigInteger.valueOf(0);
BigInteger triNum = BigInteger.valueOf(0);
//set min value to 1*2*3*4*5*...*199*200.
Bi …
3
votes
6answers
323 views
How to check for division by 7 for big number in C++?
I have to check, if given number is divisible by 7, which is usualy done just by doing something like n % 7 == 0, but the problem is, that given number can have up to 100000000, wh …
3
votes
10answers
262 views
Calculating very large whole numbers
I am trying to compute 2^1000 (2 to the power of 1000) using c#. I need the value to all places. I've been scratching my head for a while now because I can't seem to figure out a …
1
vote
1answer
29 views
Trouble with OpenSSL’s BN_bn2bin function
I'm trying to use the BN_* functions in OpenSSL. Specifically, I have the following code:
#import <openssl/bn.h>
BIGNUM * num = BN_new();
BN_set_word(num, 42);
char * buffe …
2
votes
4answers
154 views
how to make Int1024
how to declare int1024 in C#? i can use VB or C++ Too.
Regards
Behrooz
1
vote
5answers
256 views
`xrange(2**100)` -> OverflowError: long int too large to convert to int
xrange function doesn't work for large integers:
>>> N = 10**100
>>> xrange(N)
Traceback (most recent call last):
...
OverflowError: long int too large to conver …
3
votes
4answers
190 views
How can I disable scientific notation when working with very large numbers in Perl?
Consider the following:
print 3 ** 333; #Yields 7.6098802313206e+158
My question is simple: How can I disable scientific notation when working with very large numbers? Basically …
2
votes
1answer
51 views
bignum in emacs/elisp
Does emacs have support for big numbers that don't fit in integers? If it does, how do I use them?
2
votes
4answers
246 views
Delphi: using BigInts from a database
I´m using Delphi 7 with devart dbExpress to connect to SQLServer.
The problem is that when I add a bigInt field to a ClientQuery it comes as TFMTBCDField.
And the TFMTBCDField don …
1
vote
4answers
130 views
BigInteger.valueOf() for very big numbers?
What would be the best way to convert a 50-digit String to a BigInteger in Java? It doesn't have a valueOf(String) method, and I can't convert to Long because it's too small.
0
votes
1answer
24 views
modPow slow in Visual J#?
Needing a quick way to build an ActiveX control out of some Java code, I tried out Visual J# Express.
Ran into a limitation, though, when I found that BigInteger.modPow is really …
1
vote
2answers
94 views
XML-RPC: best options for 64 bit ints?
XML-RPC unfortunately doesn't support 64-bit ints in the official standard. It seems there are several extensions that add this support.
Do any of them seem to be more popular or …
