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 |
Tags
- nightroutine
- 백준
- 코테 준비
- englishbook
- SQL
- swexpertacademy
- D4
- sw expert academy
- the midnight library
- 알고리즘
- 원서
- STUDYENGLISH
- 알고리즘 문제
- 원서읽기
- BFS
- 원서읽자
- dfs
- 완전탐색
- 코테
- MySQL
- English
- 직무면접
- PyQt
- 삼성
- 프로그래머스
- sw expert
- 쉬운 알고리즘 문제
- 코테 대비
- readingbook
- 코딩테스트
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