Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
raw
history blame contribute delete
212 Bytes
class RecursiveFib{
static int fib(int n){
if(n<=1){
return n;
}
return fib(n-1)+fib(n-2);
}
public static void main(String[] args){
int n= 5;
System.out.println(fib(n));
}
}