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
- Algorithm
- String
- python
- c++
- loop
- DP
- 기초
- dfs
- 재귀
- 시작해요 언리얼 2022
- 오류
- guide
- parameter
- Unity
- Material
- Tutorial
- C#
- Programming
- W3Schools
- Basic
- 프로그래밍
- w3school
- UE5
- 백준
- 파이썬
- Class
- 문제풀이
- github
- Unreal Engine 5
- dynamic
Archives
- Today
- Total
행복한 개구리
(C++ / Python) 백준 10172번 - 개 본문
Python
l = ["|\\_/|", "|q p| /}", "( 0 )\"\"\"\\", "|\"^\"` |", "||_/=\\\\__|"]
for i in range(5):
print(l[i])
C++
#include <iostream>
using namespace std;
int main() {
string txt[5] = {"|\\_/|", "|q p| /}", "( 0 )\"\"\"\\", "|\"^\"` |", "||_/=\\\\__|"};
for (int i = 0; i < 5; i++) {
cout << txt[i] << "\n";
}
}
'Algorithm > BaekJoon' 카테고리의 다른 글
(C++/Python) 백준 1001번 - A-B (0) | 2022.07.08 |
---|---|
(C++/Python) 백준 1000번 - A+B (0) | 2022.07.08 |
(C++/Python) 백준 10171번 - 고양이 (0) | 2022.07.08 |
(C++/Python) 백준 10718번 - We love kriii (0) | 2022.07.08 |
(C++ / Python) 백준 2557번 - Hello World! (0) | 2022.06.29 |