Datasets:

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