Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Counting
- implement
- bit manipulation
- Math
- 코테
- 구현
- greedy
- Tree
- Class
- database
- two pointers
- java
- 자바
- SQL
- Binary Tree
- Binary Search
- 코딩테스트
- Stack
- array
- dynamic programming
- sorting
- Matrix
- simulation
- string
- Number Theory
- geometry
- Method
- hash table
- Data Structure
- 파이썬
Archives
- Today
- Total
코린이의 소소한 공부노트
[백준 온라인 저지] 10171. 고양이 본문
- 입력: 없음
- 출력: 위 그림과 같은 고양이를 출력한다.
class Main{
public static void main(String args[]){
System.out.println("\\ /\\");
System.out.println(" ) ( ')");
System.out.println("( / )");
System.out.print(" \\(__)|");
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 25083. 새싹 (0) | 2023.03.17 |
---|---|
[백준 온라인 저지] 10172. 개 (0) | 2023.03.17 |
[백준 온라인 저지] 2588. 곱셈 (0) | 2023.03.17 |
[백준 온라인 저지] 10430. 나머지 (0) | 2023.03.17 |
[백준 온라인 저지] 3003. 킹, 퀸, 룩, 비숍, 나이트, 폰 (0) | 2023.03.17 |