Computer Science, asked by fghjlDivyansh11, 1 year ago

Write a program in Java to print Fibonacci series:1 1 2 3 5 8 13...................till ten times.


DeathViperLP02: i can do in c ++

Answers

Answered by DeathViperLP02
1
class FibonacciExample1{  

public static void main(String args[])  

{    

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

 System.out.print(n1+" "+n2);//printing 0 and 1    

    

 for(i=2;i<count;++i)//loop starts from 2 because 0 and 1 are already printed    

 {    

  n3=n1+n2;    

  System.out.print(" "+n3);    

  n1=n2;    

  n2=n3;    

 }    

  

}}  


susmithaammumup104xr: It helped me a lot thanks
Similar questions