[BAEKJOON] #10171 (Java)

Inwook Baek ·2021년 9월 28일
0

Algorithm Study

목록 보기
2/38
post-thumbnail

Problem:
Print:

\    /\
 )  ( ')
(  /  )
 \(__)|

My Code:

public class Main {
	public static void main(String[] args) {
    
		System.out.println("\\    /\\");
		System.out.println(" )  ( ')");
		System.out.println("(  /  )");
		System.out.println(" \\(__)|");    
 
	}
}

0개의 댓글