Friday, January 1, 2021

Fibonacci Series in Java Programing Language


 In fibonacci series, next number is the sum of previous two numbers for example 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55 etc. The first two numbers of fibonacci series are 0 and 1.

Fibonacci Series 
   
class FibonacciExample1
{
  public static void main(String args[])
  {  
      int n1=0,n2=1,n3,i,len=10;  
      System.out.print(n1+" "+n2);//printing 0 and 1  

      for( i=2 ; i < len ; ++i )
      {  
        n3=n1+n2;  
        System.out.print(" "+n3);  
        n1=n2;  
        n2=n3;  
      }  
  }
}


Output : 
0 1 1 2 3 5 8 13 21 34
  

No comments:

Post a Comment

Prime Number In Java Programming Language

Prime number  is a number that is greater than 1 and divided by 1 or itself only. In other words, prime numbers can't be divided by othe...