From 153b9fe1cb62b88d5106c205b091372a0eacf665 Mon Sep 17 00:00:00 2001 From: JeonSeongBae Date: Tue, 19 Dec 2017 19:30:46 +0900 Subject: [PATCH] add closeing the scanner --- Others/FibToN.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Others/FibToN.java b/Others/FibToN.java index e7b7a9a2..1d1efdc1 100644 --- a/Others/FibToN.java +++ b/Others/FibToN.java @@ -9,7 +9,7 @@ public class FibToN { // print fibonacci sequence less than N int first = 0, second = 1; //first fibo and second fibonacci are 0 and 1 respectively - + scn.close(); while(first <= N){ //print first fibo 0 then add second fibo into it while updating second as well