https://www.acmicpc.net/problem/11718
1 2 3 4 5 6 7 8 9 10 11 | import java.util.Scanner; public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); while(sc.hasNextLine()){ System.out.println(sc.nextLine()); } sc.close(); } } | cs |
'Algorithm Problems > BOJ' 카테고리의 다른 글
[11718번] Output as is 그대로 출력하기 - In/Output[C++] (0) | 2016.12.27 |
---|---|
[4673번] Self Number 셀프 넘버 - Method[Java] (0) | 2016.12.22 |
[9012번] Parenthesis 괄호 - Stack[C++] (0) | 2016.12.19 |
[3986번] ESEJ(Nice Word) - Stack [C++] ☆ (0) | 2016.12.19 |
[6198번] Bad hair Day - Stack [C++] ☆ (0) | 2016.12.19 |