3 * 0.1 == 0.3 将会返回什么?true 还是 false?

Posted helloxtf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3 * 0.1 == 0.3 将会返回什么?true 还是 false?相关的知识,希望对你有一定的参考价值。

转自:https://www.cnblogs.com/areyouready/p/7802725.html
false,因为有些浮点数不能完全精确的表示出来

        public static void main(String[] args) {
        System.out.println(3 * 0.1);
        System.out.println(4 * 0.1);
        System.out.println(3 * 0.1 == 0.3);
        System.out.println(13 * 0.1 == 1.3);
        System.out.println(9 * 0.1 == 0.9);
        System.out.println(3 * 0.1 / 3);
    }    

        结果是:
        0.30000000000000004
        0.4
        false
        true
        true
        0.10000000000000002

以上是关于3 * 0.1 == 0.3 将会返回什么?true 还是 false?的主要内容,如果未能解决你的问题,请参考以下文章

面试官提问3:js中 0.1 + 0.2 为什么不等于0.3?怎么才能等于0.3?

0.1+0.2为什么不等于0.3

js小数计算的问题,为什么0.1+0.2 != 0.3

为什么JS中0.1+0.2 != 0.3

从0.1 + 0.2 !== 0.3 聊聊计算机基础

热点面试题:为什么 0.1+ 0.2 != 0.3,如何让其相等?