Suppose i have a byte b
byte b = 55;
I want to know how to transform this byte into a BigInteger!
I tried
BigInteger m = new BigInteger(b);
but it doesnt work.
http://www.experts-exchange.com/Programming/Languages/Java/Q_21159138.html
Zones:
JavaDate Answered: 10/07/2004 Rating: 9.2 Views: 0
Hi All,
I have a string which I need to convert to BigInteger but always got an error.....
String str2 = 123124324535464654;
BigInteger b = BigInteger.valueOf(Integer.parseInt(str2));
D...
http://www.experts-exchange.com/Programming/Languages/Java/Q_21368057.html
Zones:
JavaDate Answered: 03/29/2005 Rating: 9.0 Views: 0
Hi All,
Can anyone help to get a random prime number between a range of 2 BigInteger?
For example generate a random prime number between the range of 10000000000000000000000000000 to 10000000...
http://www.experts-exchange.com/Programming/Languages/Java/Q_21369474.html
Zones:
JavaDate Answered: 04/03/2005 Rating: 7.4 Views: 0
Hi experts,
I have a BigInteger a.
BigInteger a = ... blah ...
how to I check if I really contains an interger ? If so, how do I change it to integer ? thanks.
http://www.experts-exchange.com/Programming/Languages/Java/Q_21771752.html
Zones:
JavaDate Answered: 03/14/2006 Rating: 9.0 Views: 0
The class I am working with is at http://www.codeproject.com/csharp/biginteger.asp and as far as I know, is okay to modify.
I have compiled the C# class to a library I am using in VB.NET but fro...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_21303585.html
Zones:
C#Date Answered: 03/11/2005 Rating: 9.2 Views: 0
Hi,
I want to create an array of 1000000 objects. Each of these objects is itself BigInteger.
for ex
list a[index] = new BigInteger("84512738249832");
but the index has to be an integer.
How...
http://www.experts-exchange.com/Programming/Languages/Java/Q_21383414.html
Zones:
JavaDate Answered: 05/14/2005 Rating: 7.8 Views: 0
Hi,
I want to creat an array of size 10 of random bigintegers between 1 to N where N is a biginteger.
thanks,
Anu
http://www.experts-exchange.com/Programming/Languages/Java/Q_21383422.html
Zones:
JavaDate Answered: 07/17/2005 Rating: 8.6 Views: 0
Whether J2ME supports BigInteger?
http://www.experts-exchange.com/Programming/Languages/Java/Q_21744998.html
Zones:
JavaDate Answered: 04/03/2006 Rating: 9.2 Views: 5
I have a large number. I need to grab the number represented by the first 21 bits. I do this by doing:
(number & 0xFFFFF8000L) >>> 15;
That works in java because the number is of type long wh...
http://www.experts-exchange.com/Programming/Languages/Java/Q_21821756.html
Zones:
JavaDate Answered: 04/20/2006 Rating: 9.8 Views: 0
I'd like a library that gave me the prime factors for an arbitrary BigInteger object. Is there one out there?
http://www.experts-exchange.com/Programming/Languages/Java/Q_21992112.html
Zones:
JavaDate Answered: 09/29/2006 Rating: 9.8 Views: 0