I am working on a problem which was given to me by my friend. I need to take the input number in the form x.yzw*10^p where p is non zero and x.yzw can be zeros. I have made the program but the problem is that when we have numbers such as 0.098, decimal format will make it 9.8 but I need to get it to be 9.800, it has to always be outputted as x.yzw*10^p. can someone please show me how this is possible.

input:    output:
1234.56   1.235 x 10^3
1.2       1.200
0.098     9.800 x 10^-2

Thanks!

import java.util.Scanner;
import java.math.RoundingMode;
import java.text.DecimalFormat;

public class ConvertScientificNotation {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        DecimalFormat df = new DecimalFormat("0.###E0");
        double input = sc.nextDouble();
        StringBuffer sBuffer = new StringBuffer(Double.toString(input));

        sBuffer.append("00");
        System.out.println(sBuffer.toString());
        StringBuffer sb = new StringBuffer(df.format(Double.parseDouble(sBuffer.toString())));

        if (sb.charAt(sb.length()-1) == '0') {
            System.out.println(sBuffer.toString());
        } else {
            sb.replace(sb.indexOf("E"), sb.indexOf("E")+1, "10^");
            sb.insert(sb.indexOf("10"), " x ");
            System.out.println(sb.toString());
        }
    }
}
link|improve this question

I would suggest starting by looking at DecimalFormat; it should do most of what you're looking for relatively easily. – Mike Nov 15 '11 at 14:29
feedback

3 Answers

up vote 2 down vote accepted
DecimalFormat myFormatter = new DecimalFormat(".000");
String output = myFormatter.format(input)

then if you want to convert 'output' into a number, use:

Float answer = Float.parseFloat(output)

EDIT

also check this out, it contains more information on how to format numbers

link|improve this answer
but If I do this then It won't convert it to scientific form.. how can I make it so it does both? – gekkostate Nov 15 '11 at 14:47
ohh nevermind! I got it. Thanks! – gekkostate Nov 15 '11 at 14:50
you're welcome :) – PTBG Nov 15 '11 at 14:51
@user: Out of curiousity/posterity, how did you get it to do both? – Mark Peters Nov 15 '11 at 15:03
I just did DecimalFormat myFormatter = new DecimalFormat("0.000E0"); It seems to work. – gekkostate Nov 15 '11 at 17:50
feedback
DecimalFormat df = new DecimalFormat("0.###E0");
df.setMinimumFractionDigits(3);
df.setMaximumFractionDigits(3);

String formatted = df.format(0.098); //"9.8E-2"

Then you can just do a search and replace for E:

String replaced = formatted.replaceAll("E", " x 10^");
link|improve this answer
feedback

make your format string ".000" and it will not drop 'empty' zeroes from your formatted number.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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