https://www.acmicpc.net/problem/10172

문제
아래 예제와 같이 개를 출력하시오.
풀이
public class Main {
public static void main(String[] args) {
System.out.println("|\\_/|");
System.out.println("|q p| /}");
System.out.println("( 0 )\"\"\"\\");
System.out.println("|\"^\"` |");
System.out.println("||_/=\\\\__|");
}
}

+)
그 전 문제인 고양이처럼 한줄한줄 풀었다