250x250
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 |
Tags
- 알고리즘
- the midnight library
- 프로그래머스
- nightroutine
- 원서읽기
- dfs
- 삼성
- 직무면접
- swexpertacademy
- STUDYENGLISH
- 원서
- 원서읽자
- 완전탐색
- SQL
- 코테 준비
- 코테
- 백준
- 코딩테스트
- readingbook
- English
- sw expert
- englishbook
- PyQt
- 알고리즘 문제
- D4
- sw expert academy
- 쉬운 알고리즘 문제
- MySQL
- BFS
- 코테 대비
Archives
- Today
- Total
목록정올 (2)
시나브로
1341. 구구단 2
#include #include #include #include #include using namespace std; int main() { int a, b; cin >> a >> b; if (a > b) b--; else b++; for (int i = a; i != b;) { for (int j = 1; j < 10; j++) { cout
알고리즘/정올
2020. 12. 10. 16:30