2022年蓝桥杯javaB组

2022年蓝桥杯javaB组的第一题
2022年蓝桥杯javaB组_第1张图片
答案:7

    public static void main(String[] args) {
        /**
         * 1.想法是先减一天再对7取余得出的结果是错的(
         * 原因是double存不下Math.pow(20,22)造成精度丢失
         */
        System.out.println(Math.pow(20,22));
        System.out.println(Math.pow(20,22)-1);
        //以上两个的结果都是错的

        System.out.println((Math.pow(20,22)-1)%7);//结果1.0
        System.out.println(Math.pow(20,22)%7);//结果1.0
        /**
         * 2.先取余7再加这个偶然算对,真的是运气好(精度虽然丢失但是却是对的)
         */
        System.out.println(Math.pow(20,22)%7+6);

        /**
         * 3.正确写法
         */
        BigInteger bigInteger = new BigInteger("20");
        //Math.pow(20,22)-1
        BigInteger pow = bigInteger.pow(22).subtract(BigInteger.valueOf(1));
        BigInteger mod = pow.mod(BigInteger.valueOf(7));//取余7
        System.out.println(mod);//结果等于0说明,刚好是星期天
    }

有没有和我一样用第一种粗心写错的。。。。

你可能感兴趣的:(蓝桥杯,java,算法,java)