我在歐拉項目上做了問題8,並且遇到了一些問題。它說歐拉項目#8問題
當我嘗試並使用所需的13位運行異常線程 「main」 java.lang.ArrayIndexOutOfBoundsException:1000 在main.main(main.java:19)
,它會到達'0420752963450'這是最後13位數字串,並且會因上述錯誤而崩潰。
我知道錯誤意味着什麼,它來自哪裏,但我似乎無法修復它。
所以,我的問題是如何使這項工作?我究竟在哪裏出錯?我花了幾個小時試圖解決這個問題。
public class main {
public static void main(String[] args){
String string = ("7316717653133062491922511967442657474235534919493496983520312774506326239578318016984801869478851843858615607891129494954595017379583319528532088055111254069874715852386305071569329096329522744304355766896648950445244523161731856403098711121722383113622298934233803081353362766142828064444866452387493035890729629049156044077239071381051585930796086670172427121883998797908792274921901699720888093776657273330010533678812202354218097512545405947522435258490771167055601360483958644670632441572215539753697817977846174064955149290862569321978468622482839722413756570560574902614079729686524145351004748216637048440319989000889524345065854122758866688116427171479924442928230863465674813919123162824586178664583591245665294765456828489128831426076900422421902267105562632111110937054421750694165896040807198403850962455444362981230987879927244284909188845801561660979191338754992005240636899125607176060588611646710940507754100225698315520005593572972571636269561882670428252483600823257530420752963450");
char[] charAr = string.toCharArray();
int x = 1;
int i = 0;
int y = 14;
int product = 0;
int tempx = 0;
int temp = 0;
int times = 1;
int newLargest = 0;
while (tempx <= 999){
tempx = x;
times = 1;
while (x < (y - 1)){
System.out.print(Integer.parseInt(String.valueOf(charAr[x - 1])));
times = times * Integer.parseInt(String.valueOf(charAr[x - 1]));
x++;
i++;
}
System.out.print("\n");
System.out.println(
"X: " + x + "\t Times: " + times + "\t tempx: " + tempx);
x = tempx;
x++;
y++;
if (i == 1000){
i = 0;
}
temp = product;
product = times;
//System.out.println(times);
if (product > temp){
newLargest = product;
//System.out.println(newLargest);
}
//System.out.println(newLargest);
}
//System.out.println(newLargest);
}
}