BackJoon Algorithm 11719 그대로 출력하기 2 (Java)

업데이트:
최대 1 분 소요

BackJoon Algorithm - Java

alt

문제

alt

풀이

  • 입력의 개수가 주어지지않았다.
  • hasNexLine메서드를 써서 입력의 끝을 받고 그대로 출력하다.
import java.util.Scanner;

public class Back_11719 {
    public static void main(String[] args) {

        // given
        Scanner sc = new Scanner(System.in);
        // when
        while(sc.hasNextLine()){
            String input=sc.nextLine();
            System.out.println(input);
        }

        // then
        sc.close();
    }
}


댓글남기기