Euclid 썸네일형 리스트형 Project 9-67 Euclid's method to get the Greate commom divisor and the Least common muliple 유클리드 소거법으로 최대공약수, 최소공배수 구하기 //============================================================================ // 제출일 : 2005. 4. 12 // 작업환경 : Windows XP SP1, VC++ 6.0, Pentium4 // 연습문제 9-67 //============================================================================ #include int get_gcd(int a, int b); //recursive fuction int main() { int gcd; int a, b; cout > a; cout > b; gcd = get_gcd(a, b); cout 더보기 이전 1 다음