티스토리 뷰

알고리즘

4. 10172 개

ITGenerations 2019. 11. 5. 23:59

문제

아래 예제와 같이 개를 출력하시오.

입력

없음.

출력

개를 출력한다.

 

|\_/|

|q p| /}

( 0 )"""\

|"^"` |

||_/=\\__|

 

 

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("||_/=\\\\__|");
    }
}

'알고리즘' 카테고리의 다른 글

6. 1000 A+B  (0) 2019.11.06
5. 7287 등록  (0) 2019.11.06
3. 10171 고양이  (0) 2019.11.05
2. 10718 We love kriii  (0) 2019.11.05
1. 2557 Hello World  (0) 2019.11.05