2012년 12월 13일 목요일

LCM

private static int LCM(int a, int b)

{

return (a * b) / GCD(a, b);

}

댓글 없음:

댓글 쓰기