当前位置:   article > 正文

第十三届蓝桥杯B组Java(试题A:星期计算)_试题 a 星期计算

试题 a 星期计算

在这里插入图片描述

试题A:星期计算

简介:本体主要的难点为处理大整数存储问题,本题介绍三种写法,一种是Java的特色API,另两种更普遍。

答案:7

题解1(double)

public class Main{
    public static void main(String [] arg){
        // double 类型不会超范围
        double res = Math.pow(20, 22);
        res %= 7;
        System.out.println(res + 6);
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

题解2(BigInteger)

import java.math.BigInteger;

public class Main {
    public static void main(String[] args) {
        BigInteger bg = new BigInteger(20+""); // BigInteger的参数为字符串
        BigInteger res = bg.pow(22).remainder(BigInteger.valueOf(7)).add(BigInteger.valueOf(6));
        System.out.println(res);
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

题解3(循环法)

import java.math.BigInteger;

public class Main {
    public static void main(String[] args) {
        int n = 22;
        int res = 0;
        // 通过循环解决问题
        while(n > 0)
        {
            res = 20 * 20 % 7;
            n --;
        }
        System.out.println(res + 6);
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号