Last Updated: 14 March, 2023
On this tutorial page we are going to learn how to write a Java program to print fibonacci series.
The Fibonacci series is a sequence of numbers in which each number is the sum of the two preceding numbers. The first two numbers in the Fibonacci sequence are 0 and 1. After that, each subsequent number is the sum of the previous two. So the sequence goes 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, and so on.
Here's a Java program to print the Fibonacci series up to a given number:
Example 1 : Fibonacci Series Using for Loop in Java
Output
Fibonacci Series of 10 numbers:
0 1 1 2 3 5 8 13 21 34
Example 2 : Fibonacci Series Using while Loop in Java
Output
Fibonacci Series of 10 numbers:
0 1 1 2 3 5 8 13 21 34
Example 3 : Fibonacci Series Using for Loop and Scanner Class
Output
Enter the number: 20
Fibonacci Series of 20 numbers:
0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597 2584 4181
That's all guys, hope this Java Program is helpful for you.
Happy Learning.
feedback@javabytechie.com