Algorithms_in_C++ 1.0.0
Set of algorithms implemented in C++.
|
Compute the greatest common denominator of two integers using recursive form of Euclidean algorithm More...
#include <iostream>
Functions | |
int | gcd (int num1, int num2) |
int | main () |
Compute the greatest common denominator of two integers using recursive form of Euclidean algorithm
int gcd | ( | int | num1, |
int | num2 ) |
algorithm
int main | ( | void | ) |
Main function