알고리즘 공부 2일차 ! 오늘도 화이팅 해보자. 오늘 배운 것 1. nextLine() next()가 문자열을 읽는 것(띄어쓰기 전까지) 이라면, nextLine()은 한줄을 그대로 읽는 것이다. // test = "it is time to study"; System.out.println(test.next());// it System.out.println(test.nextLine());// it is time to study 2. indexOf(char c) param으로 주어진 문자의 첫번째 인덱스를 반환한다. 없다면 -1을 반환해준다. String test = "it is time to study"; System.out.println(test.indexOf('i'));// 0 System.out.pr..