Computer Science, asked by shrirakshanaik71, 4 days ago

write a algorithm for to find fibonacci series of nth term

Answers

Answered by samarthkrv
1

Answer:

import java.util.*;

class fibonacci

{

public static void main(String args[])

 {

 Scanner scanner = new Scanner(System.in);

 int n1=0,n2=1,n3,i,count;

 count = scanner.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;    

   }    

 }

}

Explanation:

Similar questions