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 diff --git a/Others/FloydTriangle.java b/Others/FloydTriangle.java index 815dbd29..f8d479a8 100644 --- a/Others/FloydTriangle.java +++ b/Others/FloydTriangle.java @@ -6,7 +6,7 @@ class FloydTriangle { Scanner sc = new Scanner(System.in); System.out.println("Enter the number of rows which you want in your Floyd Triangle: "); int r = sc.nextInt(), n = 0; - + sc.close(); for(int i=0; i < r; i++) { for(int j=0; j <= i; j++) { System.out.print(++n + " ");