How to convert BigDecimal object to a String representation that uses the exponential form? something like: 3.134e67? I looked into the API and I found toEngineeringString() but it does not give me what I want.
| ||||
|
feedback
|
|
Have you read the NumberFormat documentation, this is from DecimalFormat: See: http://docs.oracle.com/javase/1.4.2/docs/api/java/text/DecimalFormat.html
| |||||
feedback
|
|
Does this help you?
| ||||
|
feedback
|
|
Are you looking for something like this? YY ^ XX (mod QQ)
When you start using GIANT numbers you will need to use modular arithmetic. This becomes especially useful when generating large primes like in RSA algorithm. The basics of modular arithmetic covered here: http://www.brainjammer.com/math/modular-arithmetic/ | |||||
feedback
|