JAVA program to print fibonacci series without using recursion and using recursion. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

JAVA program to print fibonacci series without using recursion and using recursion.

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;      }       }}   plz upvote if you like this program....

4th Mar 2017, 1:03 AM
Ashok Chandra
Ashok Chandra - avatar
2 Answers
0
Did you know there is a code section where you could exactly do that? This is for questions and answers
6th Mar 2017, 12:07 PM
Qwerty
0
why I am not getting any output in the above program
2nd Jul 2017, 12:16 PM
Anuj singh
Anuj singh - avatar