0

我正在解决 Project Euler 的一些问题,但我偶然发现了一个问题。我不知道为什么这个算法不适用于 2^1000。它适用于 10^1 和 10^8 范围内的数字(这些是我测试过的数字),但它应该适用于每个可能的范围。

顺便说一下,2^1000 是 1.07*10^301。双精度的上限或多或少为 10^308,因此该数字仍在范围内。

import java.lang.Math;

public class Euler15 {
    public static void main(String[] args) {


        int count = 0;
        double res = Math.pow(2,1000);

        for(int i = 301; i >= 0; i--){
            if (res == 0){
                break;
            }
            while (res >= Math.pow(10, i)){
                res-= Math.pow(10, i);
                System.out.println(res);
                count++;
            }
        }

    System.out.println(count);
}
}
4

1 回答 1

2

2^1000 对于普通数据类型来说太大了。使用 BigInteger 或字符串。

import java.math.BigInteger;

将输入作为 BigInteger:

BigInteger n = BigInteger.valueOf(2);

现在将其加电至 1000:

n = n.pow(1000);

toString()现在,使用然后将其转换为字符串,然后将每个字符添加到结果中,将其更改为int. 那应该这样做。

于 2013-11-23T21:51:43.493 回答