Merge pull request #365 from JeonSeongBae/SeongBaeJeon1

Add line that closing scanner
This commit is contained in:
Varun Upadhyay 2017-12-19 06:38:15 -08:00 committed by GitHub
commit fe3c36be6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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 + " ");