Kevin234


私信TA

用户名:Kevin234

访问量:20491

签 名:

手可摘星辰

等  级
排  名 849
经  验 3622
参赛次数 0
文章发表 40
年  龄 0
在职情况 学生
学  校 南京信息工程大学
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

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

public class T1893 {
	public static void main(String[] args) {
		Scanner in = new Scanner(System.in);
		BigDecimal H2o = new BigDecimal("3.0E-23");
		while(in.hasNext()){
			double n = in.nextDouble();
			BigDecimal ans = new BigDecimal(n*950);
			ans = ans.divide(H2o, 10,BigDecimal.ROUND_HALF_DOWN);
			DecimalFormat form = new DecimalFormat("0.000000E000");
			StringBuilder s = new StringBuilder(form.format(ans));
			s.replace(s.indexOf("E"), s.indexOf("E")+1,"E+");
			System.out.println(s);
		}
		in.close();
	}

}


 

0.0分

0 人评分

  评论区

  • «
  • »