这是来自12年级计算机科学课程的作业。
我遇到困难的作业部分内容如下:
确定前20个Fibonacci数中的哪一个是素数。
在基本挑战的打印输出中放置“这是一个主要的”文本通知。
将FibPrimes存储在名为FibPrimes的数组中。
以下是我的尝试:
在底部附近,如果给定的FibNum元素等于FibPrime元素,我试图创建一个循环来打印文本通知“This is a prime”。这没用。 问题块标有注释。程序的其余部分没问题。
package fibonaccinumbers;
public class FibonacciNumbers {
public static void main(String[] args) {
// Creation of Fibonacci Numbers Array.
int [] FibNums = new int[20];
FibNums[0] = 0;
FibNums[1] = 1;
// Creation if Fibonacci Primes Array.
int [] FibPrimes = new int[7];
FibPrimes[0] = 2;
FibPrimes[1] = 3;
FibPrimes[2] = 5;
FibPrimes[3] = 13;
FibPrimes[4] = 89;
FibPrimes[5] = 233;
FibPrimes[6] = 1597;
// Printing first two fibonacci numbers.
System.out.println(0);
System.out.println(1 + "*");
// Printing remaining fibonacci numbers up to 20th term.
for (int i=2; i<FibNums.length;i++){ // Begin number generation loop.
FibNums[i] = FibNums[i-1] + FibNums[i-2];
// Checks if the fibonacci number is odd.
// A number is not odd if two divides into it evenly.
boolean oddcheck = true;
if (FibNums[i]%2==0){
oddcheck = false;
}
// Prints odd fibonacci numbers with a star beside it.
// Prints even fibonacci numbers with no star beside it.
if (oddcheck == true){
System.out.println(FibNums[i] + "*");
} else {
System.out.println(FibNums[i]);
}
// PROBLEM BLOCK HERE. ************************
// If any element in the FibPrimes array is equal to the FibNums
// array, then the number is a prime.
for (int n=0; n<=FibPrimes.length; n++){
if (FibNums[i] == FibPrimes[n]){
System.out.print(" " + "This is a prime.");
}
}
} // End number generation loop.
}
}
删除了问题块的输出:
0
1*
1*
2
3*
5*
8
13*
21*
34
55*
89*
144
233*
377*
610
987*
1597*
2584
4181*
(星星识别奇数 - 来自作业的不同部分)
剩余问题块的输出:
0
1*
1*
请注意,其余数字不会打印,也没有文字通知。
有可能比现在有更好的方法来解决问题,但我会继续修改这个问题。如果您需要更多信息,请与我们联系。谢谢。
谢谢@AJNeufeld和@YayPawSi。使用您的解决方案,我能够打印程序。 修订后的输出:
0
1*
1*
This is a prime. 2
This is a prime. 3*
This is a prime. 5*
8
This is a prime. 13*
21*
34
55*
This is a prime. 89*
144
This is a prime. 233*
377*
610
987*
This is a prime. 1597*
2584
4181*
答案 0 :(得分:0)
这是ArrayIndexOutOfBoundException,
//Remove = sign for n < FibPrimes.length
for (int n = 0; n < FibPrimes.length; n++){
if (FibNums[i] == FibPrimes[n]){
System.out.print(" " + "This is a prime.");
}
}