Java-截尾和舍入的问题

Posted liyifaner

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java-截尾和舍入的问题相关的知识,希望对你有一定的参考价值。

直接转型时,总是对数字执行截尾。如果想要得到四舍五入的结果,则需使用java.lang.Math中的round()方法。

 1 import java.util.*;
 2 
 3 public class CastingNumbers {
 4     public static void main(String[] args) {
 5     double above=0.7,below=0.4;
 6     float fabove=0.7f,fbelow=0.4f;
 7     System.out.println("(int)above:"+(int)above);
 8     System.out.println("(int)below:"+(int)below);
 9     System.out.println("(int)fbelow:"+(int)fbelow);
10     System.out.println("(int)fabove:"+(int)fabove);
11     System.out.println();
12     System.out.println("Math.round(above):"+Math.round(above));
13     System.out.println("Math.round(below):"+Math.round(below));
14     }
15 }

 

以上是关于Java-截尾和舍入的问题的主要内容,如果未能解决你的问题,请参考以下文章

Java常见操作符

在 VBA 中计算时间差和舍入以进行访问

如何辨别统计中的拖尾和截尾

举例说明android源代码调试中加入的log方法

帮我看下怎样判断截尾和拖尾吧,谢谢!

时间序列+截尾和拖尾