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
- 이펙티브코틀린
- 에러핸들링
- Four Squares
- 우아한 테크 세미나
- C++
- BOJ
- Spring
- 10026번
- 운영체제
- Window-Via-c/c++
- 열혈 TCP/IP 소켓 프로그래밍
- 윤성우 저자
- 우아한레디스
- 김영한
- OS
- 스프링 입문
- 스프링 핵심 원리
- redis
- Operating System
- 2475번
- 열혈 tcp/ip 프로그래밍
- inflearn
- TCP/IP
- n타일링2
- FIFO paging
- HTTP
- 제프리리처
- 토마토
- Operating System.
- C#
Archives
- Today
- Total
목록2609 (1)
나의 브을로오그으
[c++] 2609번 : 최대공약수, 최소공배수
#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(NULL); int n1 = 0; int n2 = 0; int GCD = 0; int LCM = 0; cin >> n1 >> n2; int t1 = n1; int t2 = n2; while (t1 % t2 != 0) { int mod = t1 % t2; t1 = t2; t2 = mod; } GCD = t2; LCM = n1 * n2 / t2; cout
알고리즘/BaekJoon
2022. 4. 27. 13:22