바야바네 움집
[1934번] 최대공배수 본문
📌코드
#include <stdio.h>
int GCD(int D, int B);
int main()
{
int arr[1000];
int testCase, count;
int a, b;
scanf("%d", &testCase);
count = testCase;
while(testCase){
scanf("%d %d", &a, &b);
arr[testCase-1] = a*b / GCD(a, b);
testCase--;
}
for(int i=count-1; i>-1; i--)
printf("%d\n", arr[i]);
return 0;
}
int GCD(int D, int B)
{
int R;
R = D % B; //D = B * (D/B) + R;
if(R!=0) GCD(B, R);
else return B;
}
'🧶 알고리즘 > 🎲백준BOJ' 카테고리의 다른 글
[11654] 문자열 : 아스키 코드 (0) | 2021.11.23 |
---|---|
[6588번] 골드바흐의 추측 (0) | 2021.08.31 |
[1978번] 소수 찾기 (0) | 2021.08.31 |
[9613번] GCD 합 (0) | 2021.08.30 |
[2609번] 최대공약수와 최소공배수 (0) | 2021.08.30 |
Comments