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
- vitis
- verilog
- java
- 정처기
- Bus
- boj
- 백준
- hdl
- 실기
- 자격증
- linux
- AMBA BUS
- axi
- verilog HDL
- FPGA
- chip2chip
- Vivado
- 정보처리기사
- 코딩테스트
- HDLBits
- Xilinx
- SQL
- Zynq
- 리눅스
- Beakjoon
- C++
- amba
- baekjoon
- UNIX
- Backjoon
Archives
- Today
- Total
Hueestory
[1934] 최소공배수 (C++) 본문
#include <iostream>
using namespace std;
int gcd(int a, int b);
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int t; cin >> t;
int a, b;
for (int i = 0; i < t; i++) {
cin >> a >> b;
if(a >= b)
cout << a * b / gcd(a, b) << "\n";
else
cout << a * b / gcd(b, a) << "\n";
}
return 0;
}
int gcd(int a, int b) {
if (a % b == 0) return b;
else return gcd(b, a % b);
}
1. 재귀함수를 이용해 최대공약수를 구하고, a * b를 최대공약수로 나누면 최소공배수가 된다
'PS(중단) > BOJ' 카테고리의 다른 글
[1033] 칵테일 (C++) (0) | 2024.05.23 |
---|---|
[1850] 최대공약수 (C++) (0) | 2024.05.23 |
[11689] GCD(n, k) = 1 (C++) (0) | 2024.05.22 |
[1016] 제곱 ㄴㄴ 수 (C++) (0) | 2024.05.21 |
[1747] 소수&팰린드롬 (C++) (0) | 2024.05.21 |
Comments