Notice
Recent Posts
Recent Comments
Link
Dev.baelanche
[백준 10171] 고양이 본문
반응형
갑자기 단계별 문제에 추가되서 풀어봤다.
\, ', " 등의 문자를 처리하는 문제이다.
사실 고양이가 귀여운 문제다.
public class Main {
public static void main(String[] args) {
System.out.println("\\ /\\");
System.out.println(" ) ( \')");
System.out.println("( / )");
System.out.println(" \\(__)|");
}
}
반응형
'Data Structure & Algorithm > PS - JAVA' 카테고리의 다른 글
[백준 2753] 윤년 (0) | 2019.06.25 |
---|---|
[백준 2588] 곱셈 (0) | 2019.06.25 |
[백준 15683] 감시 (0) | 2019.06.25 |
[백준 15686] 치킨 배달 (0) | 2019.06.25 |
[백준 17142] 연구소 3 (0) | 2019.06.25 |
Comments