117181 [백준 11718] 그대로 출력하기 출처 : https://www.acmicpc.net/problem/11718 소스코드 public class Q11718 { public static void main(String[] args) { Scanner in = new Scanner(System.in); String str; while(in.hasNextLine()) { str = in.nextLine(); System.out.println(str); } } } 그냥 공백비교해서 처리하면 런타임 에러가 뜬다몇번 고치면서 계속 안되길래 검색을 해보니nextLine()을 쓸 경우 다음 줄 입력에 대해 NoSuchElementException 을 신경써줘야 했다.이 부분은 while의 조건문에 hasNextLine() 을 사용해 처리해주었다흠...요.. 2019. 1. 22. 이전 1 다음