subject

The Fibonacci sequence is the sequence of numbers: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, …
The next number is found by adding up the two numbers before it.
For example, the 2 is found by adding the two numbers before it (1+1). The 3 is found by adding the two numbers before it (1+2). The 5 is found by adding the two numbers before it (2+3), and so on! Each number in the sequence is called a term.
In this exercise, you will need to:
Create the array int[] sequence that holds the values of the first 15 terms of the Fibonacci sequence. Think carefully about what happens to the index when iterating through the loop to fill this array. Read the Fibonacci description above to help!
Then print out the sequence of numbers seperated by a space.
Finally, create a method findIndex to find the index of the term 55.
Sample output:
Fibonacci sequence up to 15 terms:
0 1 1 2 3 5 8 13 21 34 55 89 144 233 377
Index position of 55 is: 10
Hint: You will need to use several loops: One to fill the array, one to print the array, and one to traverse the array!
Below is the coding given to change. Please use a template:
public class Fibonacci
{
public static void main(String[] args)
{
//number of elements to generate in the sequence
int max = 15;
// create the array to hold the sequence of Fibonacci numbers
//create the first 2 Fibonacci sequence elements
sequence[0] = 0;
sequence[1] = 1;
//create the Fibonacci sequence and store it in int[] sequence
//print the Fibonacci sequence numbers
System. out. println("\nIndex position of 55 is: " + findIndex(sequence, 55));
}
// This method finds the index of an element in an array
public static int findIndex (int[] arr, int n)
{
// your code goes here
}
}

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 04:30
Dr. wisteria is a prominent chiropractor in the chicago area. she wants to provide a forum for her patients to discuss their health concerns and to seek and offer advice to other patients. which telecommunications tool is most appropriate for dr. wisteria's needs?
Answers: 3
question
Computers and Technology, 23.06.2019 18:30
Where can page numbers appear? check all that apply. in the header inside tables in the footer at the bottom of columns at the top of columns
Answers: 1
question
Computers and Technology, 24.06.2019 19:30
Dtp allows you to manipulate text boxes in the following ways. more than 1 answer. a.move them b.rotate them c.resize them d.all of the above e.none of the above
Answers: 1
question
Computers and Technology, 25.06.2019 15:40
Draw a flowchart to find the average of all even numbers from 1 - 100 question ? the number of distinct dots used to display an image on a monitor is known as device size resolution aspect ratio display count
Answers: 2
You know the right answer?
The Fibonacci sequence is the sequence of numbers: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, …
The nex...
Questions
question
Mathematics, 06.11.2021 07:40
Questions on the website: 13722361