If I have a number 52000000000, and I want to print it out as 5.2E+9, how do I do that with printf?

link|improve this question
feedback

2 Answers

up vote 3 down vote accepted

Since it's a simple method I'll guide you through it.

You'll need two counters: one for the number itself (type double, let's call it 'num'), and one for the exponent (integer, let's call it exp). You'll need a while loop such that while num is greater than 10, divide num by 10 and increase exp by 1. So, something like 7600 should have num = 7.6, exp = 3.

Depending on your return type, you can return these values in numerous ways. A simple way would be to have return type string and return num+"E"+exp.

link|improve this answer
The base 10 exponent is the base 10 logarithm of the number, rounded down, log(7600)=3.xx. You dont need divisions in a loop. – Daniel Fekete Oct 26 '11 at 5:11
That doesn't make the mantissa readily available, though. – user991710 Oct 26 '11 at 5:32
Well thats 7600/10^3 – Daniel Fekete Oct 26 '11 at 5:50
Right... I haven't been able to think straight today. The asker should probably just mark your comment as an answer if that's possible. Much simpler and more efficient. – user991710 Oct 26 '11 at 6:18
There was also a way to do this with printf("%e", number) – user1013926 Oct 28 '11 at 15:30
feedback

You need to have a look at this : DecimalFormat

formatter = new DecimalFormat("0.#E0");
System.out.println(formatter.format(value));//value is where you store the number to be formatted
link|improve this answer
There doesn't seem to be a way to do this automatically with several different numbers of different lengths... – user1013926 Oct 26 '11 at 4:24
see edit. Tell me why this wont work~! – Sanjay Oct 26 '11 at 4:45
This is a better way of doing this, but this did seem like homework or some-such which is why I opted for the above. – user991710 Oct 26 '11 at 5:03
I haven't been able to get this to work, but wouldn't that give me just two sig figs? – user1013926 Oct 26 '11 at 23:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.