728x90
import java.io.*;
public class chp4_8_5 {
static int gcd(int n, int m) {
while(n!=m)
if(n>m) n-=m;
else m-=n;
return n;
}
public static void main(String[] args) throws java.io.IOException{
BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
int n,m;
n = Integer.parseInt(input.readLine());
m = Integer.parseInt(input.readLine());
int gcd = gcd(n,m);
int lcd = (m/gcd) * (n/gcd) * gcd;
System.out.println("gcd = " + gcd);
System.out.println("lcd = " + lcd);
}
}
반응형
'전.java' 카테고리의 다른 글
연산 (곱셈, 분수) (0) | 2021.02.07 |
---|---|
연산 (시그마 합, 파이) (0) | 2021.02.07 |
암스트롱수(Armstrong number)를 구하는 프로그램 (0) | 2021.02.07 |
회문수(Palindromic number)인지 판별하는 프로그램 (0) | 2021.02.07 |
1부터 500 사이의 완전수를 구하는 프로그램 (0) | 2021.02.01 |