In this program, you'll learn to display fibonacci series in Java using for and while loops. You'll learn to display the series up to a specific term or a number.
The Fibonacci Sequence is the series 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.
- 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),
- And the 5 is (2+3), and so on!
Fibonacci Series Using For Loop
When you run the program, the output will be:
First 10Terms Fibonacci Series : 0 1 1 2 3 5 8 13 21 34
Fibonacci Series Using While Loop
When you run the program, the output will be:
First 10Terms Fibonacci Series : 0 1 1 2 3 5 8 13 21 34
Fibonacci Series upto a Given Number
When you run the program, the output will be:
Fibonacci Series up-to 50 : 0 1 1 2 3 5 8 13 21 34
إرسال تعليق
Thank you for vising