一、Description

Larry graduated this year and finally has a job. He's making a lot of money, but somehow never seems to have enough. Larry has decided that he needs to grab hold of his financial portfolio and solve his financing problems. The
first step is to figure out what's been going on with his money. Larry has his bank account statements and wants to see how much money he has. Help Larry by writing a program to take his closing balance from each of the past twelve months and calculate his
average account balance.

Input

The input will be twelve lines. Each line will contain the closing balance of his bank account for a particular month. Each number will be positive and displayed to the penny. No dollar sign will be included.

Output

The output will be a single number, the average (mean) of the closing balances for the twelve months. It will be rounded to the nearest penny, preceded immediately by a dollar sign, and followed by the end-of-line. There will be
no other spaces or characters in the output.

这个问题实在太简单,要说有什么难的就是小弟的英语水平跟不上打字水平。由于实在太简单,我就不按老规矩分析了,只是指出需要注意的方面并拓展。

  • 听江湖传言,WA最多的就是精度问题了。不少同志由于不是用Java,所以精度没控制好。

对于这个问题,下面列出四种java里面的解决方法:

  1. 最简单的,System.out.println(String.format("%.2f", f));或者System.out,printf("%.2f",a);
  2. DecimalFormat df = new DecimalFormat("#.00");  System.out.println(df.format(f));
    1. NumberFormat nf = NumberFormat.getNumberInstance();
    2. nf.setMaximumFractionDigits(2);
    3. System.out.println(nf.format(f));
    1. BigDecimal bg = new BigDecimal(f);
    2. double f1 = bg.setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue();
    3. System.out.println(f1);

感谢总结上面方法的同志!

版权声明:本文为博主原创文章,未经博主允许不得转载。

最新文章

  1. MySQL查询分析器EXPLAIN或DESC
  2. LeetCode——Serialize and Deserialize Binary Tree
  3. socket 中午吃的啥
  4. java解析properties文件
  5. .net core demo & docker images
  6. lucene建立索引的过程
  7. 有趣的JavaScript
  8. STL之string
  9. 《Troubleshooting SQL Server》读书笔记-CPU使用率过高(下)
  10. tablehost
  11. 善用log日志
  12. mybatis对java自定义注解的使用——入门篇
  13. windows配置git
  14. 【LaTeX排版】LaTeX使用--入门基础<一>
  15. C语言输出
  16. elasticsearch6.7 05. Document APIs(7)Update By Query API
  17. 将Word,PDF文档转化为图片
  18. 自定义tarBar
  19. 学习Oracle的一些收获
  20. 读取Style符号库样式的方法

热门文章

  1. 九度OJ 1254:N皇后问题 (N皇后问题、递归、回溯)
  2. html/css背景图片自适应分辨率大小
  3. 我的Android进阶之旅------>Android中AsyncTask源码分析
  4. Unicode Category
  5. spring data jpa 利用@Query进行查询
  6. eclipse revert resources 很慢的解决办法
  7. 通过GPRS将GPS数据上传到OneNet流程
  8. 自定义jsonp请求数据
  9. HTTP1.1与HTTP1.0
  10. android 电池(三):android电池系统【转】