Format code

This commit is contained in:
Nyymix 2022-04-30 19:32:49 +03:00
parent 790b07679c
commit c9a7300269

View file

@ -1,9 +1,9 @@
// Fibonacci number generator in Java using recursion
public class Fibo
{
// Fibonacci number generator in Java using recursion
public class Fibo {
static final int COUNT = 40;
private static long fibo(int i){
private static long fibo(int i) {
if (i < 3)
return 1;
else
@ -18,4 +18,5 @@
long after = System.currentTimeMillis();
System.out.println("Laskenta kesti: " + (after - before) + " ms");
}
}
}