Question
Every other number in this sequence is calculated by adding the previous two numbers in the sequence.
So the third Fibonacci number is 1, which is obtained by adding 0 and 1.
The fourth Fibonacci number is 2, which is obtained by adding 1 and 1.
And so on.
Your assignment is to take the following pseudocode and turn it into the Java class Fibonacci.
print 0 on its own line
print 1 on its own line
last = 1
previous = 0
repeat 13 times:
next = last + previous
print next on its own line
previous = last
last = next
Note that this program will not ask the user for input.
But it will print out the first 15 Fibonacci numbers.
It is OK to do all of this in the main method.
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
public class fibonacci {public static void main(String [ ] args)
{
int previous = 0;
int last = 1;
int next;
System.out.println(previous);
System.out.println(last);...