[BAEKJOON] #10172 (Java)

Inwook Baek ·2021년 9월 28일
0

Algorithm Study

목록 보기
3/38
post-thumbnail

Problem:
Print:

|\_/|
|q p|   /}
( 0 )"""\
|"^"`    |
||_/=\\__|

My Code:

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

0개의 댓글