728x90
import java.io.*;
public class ExerciseCh5_9_2 {
static int method(int x, int y) {
while (x != y) {
if (x > y) x -= y;
else y -= x;
}
return x;
}
public static void main(String[] args) throws java.io.IOException{
BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
int i, j;
int a, b;
System.out.print("Enter first number : ");
i = Integer.parseInt(input.readLine());
System.out.print("Enter second number : ");
j = Integer.parseInt(input.readLine());
a = method(i, j);
System.out.println("a = " + a);
b = (i/a) * (j/a) * a;
System.out.println("b = " + b);
}
}
반응형
'전.java' 카테고리의 다른 글
Garbage 클래스 (0) | 2021.02.08 |
---|---|
배열 클래스 (0) | 2021.02.08 |
Count 클래스 (0) | 2021.02.08 |
스택 클래스 (Stack) (0) | 2021.02.08 |
복소수 클래스 (Complex) (0) | 2021.02.08 |