Clean code

This commit is contained in:
Nyymix 2022-04-29 10:32:32 +03:00
parent 92ec140860
commit 790b07679c

View file

@ -1,6 +1,7 @@
// Fibonacci number generator in Java using recursion
public class Fibo
{
static final int count = 40;
static final int COUNT = 40;
private static long fibo(int i){
if (i < 3)
@ -10,9 +11,9 @@
}
public static void main(String[] args) {
System.out.println("Lasketaan fibo: " + count);
System.out.println("Lasketaan fibo: " + COUNT);
long before = System.currentTimeMillis();
for (int i=1; i <= count; i++)
for (int i=1; i <= COUNT; i++)
System.out.println("Fibo: " + i + " = " + fibo(i));
long after = System.currentTimeMillis();
System.out.println("Laskenta kesti: " + (after - before) + " ms");