Thursday, 16 June 2016

Program to print Fibonacci Series till a given range.

Explanation :
In Fibonacci series, next number is the sum of previous two numbers.
For example: If count =10 then output will be 0, 1, 1, 2, 3, 5, 8, 13, 21, 34.

Code:

public class Fibonacci
{
    public static void main(String args[ ])
   {
       Scanner sc= new Scanner(System.in);  
       int n1=0,n2=1,n3,i;
       count = sc.nextInt();  
       System.out.print(n1+" "+n2);//printing 0 and 1  
  
       for(i=2;i<count;++i)  
       {  
            n3=n1+n2;  
            System.out.print(" "+n3);  
            n1=n2;  
            n2=n3;  
         }  
     }

 

No comments:

Post a Comment