Math.pow(23,29)%91 的结果为什么是错误的?
public class T1 {
public static void main(String[] args) {
double c = Math.pow(23,29)%91.0;
System.out.println(c);
}
}
输出:28.0
int c = (int)Math.pow(23,29)%91;
System.out.println(c);
输出 36
然而这都不是正确答案
正确取余后的值是4才对
精度不够,
23 ^ 29
是个40位
十进制数,double
只有15位有效数字,根本表达不了末尾的准确数值int
最大值只有10位,这么赋值早就溢出了double是浮点数,你这个问题最好使用BigInteger来解决。