https://www.acmicpc.net/problem/11719
public class Boj11719_그대로출력하기2 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while (sc.hasNextLine()) {
String input = sc.nextLine();
System.out.println(input);
}
sc.close();
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 2920 음계 (0) | 2022.02.16 |
---|---|
백준 5585 거스름돈 (0) | 2022.02.15 |
백준 5598 카이사르 암호 (0) | 2022.02.14 |
백준 10809 알파벳 찾기 (0) | 2022.02.14 |
백준 2292번 : 벌집 (Python, 파이썬) (0) | 2022.02.14 |