Java program to print "Fibonacci Series" using function up to a particular number.
The Fibonacci series is a type series where each number is the sum of the two that precede it means the addition of the two numbers which came before the new number . It starts from 0 and 1 usually. The Fibonacci sequence is given by 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, and so on. The numbers in the Fibonacci sequence are also called Fibonacci numbers.
Comments
Post a Comment