Computer Science, asked by smily710, 15 days ago

write a java program to print febonnaci series and print it's sum up to terms using recursion​

Attachments:

Answers

Answered by ishikaroy143
1

Answer:

class FibonacciExample2{

static int n1=0,n2=1,n3=0;

static void printFibonacci(int count){

if(count>0){

n3 = n1 + n2;

n1 = n2;

n2 = n3;

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

printFibonacci(count-1);

}

}

public static void main(String args[]){

int count=10;

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

printFibonacci(count-2);//n-2 because 2 numbers are already printed

i hope it helps u!!

Similar questions