我正在处理我朋友给我的问题。我需要以x.yzw*10^p
形式输入输入数字p
非零,x.yzw
可以为零。我已经制作了这个程序,但问题是,当我们有0.098
之类的数字时,十进制格式会使它成为9.8
,但我需要将其设为9.800
,它必须始终输出为x.yzw*10^p
。有人可以告诉我这是怎么可能的。
input: output:
1234.56 1.235 x 10^3
1.2 1.200
0.098 9.800 x 10^-2
代码:
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());
}
}
}
答案 0 :(得分:2)
DecimalFormat myFormatter = new DecimalFormat(".000");
String output = myFormatter.format(input)
然后,如果您想将'output'转换为数字,请使用:
Float answer = Float.parseFloat(output)
修改强>
还要检查this,它包含有关如何格式化数字的更多信息
答案 1 :(得分:1)
DecimalFormat df = new DecimalFormat("0.###E0");
df.setMinimumFractionDigits(3);
df.setMaximumFractionDigits(3);
String formatted = df.format(0.098); //"9.8E-2"
然后你可以进行搜索并替换E:
String replaced = formatted.replaceAll("E", " x 10^");
答案 2 :(得分:0)
将您的格式字符串设为“.000”,并且不会从格式化的数字中删除“空”零。