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
- 프로그래머스
- 쉬운 알고리즘 문제
- D4
- 백준
- 코테 대비
- nightroutine
- sw expert
- swexpertacademy
- 완전탐색
- MySQL
- 삼성
- 코딩테스트
- 원서
- 직무면접
- PyQt
- SQL
- 코테
- 원서읽자
- dfs
- STUDYENGLISH
- 알고리즘 문제
- BFS
- 알고리즘
- 코테 준비
- englishbook
- English
- readingbook
- the midnight library
- sw expert academy
- 원서읽기
Archives
- Today
- Total
목록알고리즘/정올 (3)
시나브로
1309. 팩토리얼
#include #include #include #include #include using namespace std; void factoral(int n, long long answer) { if (n == 0) { cout
알고리즘/정올
2020. 12. 10. 16:44
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