small fixes

This commit is contained in:
2024-10-28 04:39:14 +03:00
parent b1f377bfec
commit 7c466095ae
3 changed files with 8 additions and 4 deletions

View File

@ -16,6 +16,7 @@ public class fibonacci {
b = c;
++count;
}
System.out.println("Closest number is: "+a);
System.out.println("Index is : "+count);
}
}