TP01 + TP02 Fibbo

This commit is contained in:
HORVILLE 2022-10-07 11:13:46 +02:00
parent 081d95d9dc
commit f39b5c0f50

View File

@ -0,0 +1,16 @@
public class Fibbonaci {
public static int fibbo(int n, int r) {
switch (n) {
case 0:
return 0;
case 1:
return 1;
default:
return fibbo(n-2, r) + fibbo(n-1, r);
}
}
public static void main(String[] args) {
}
}