Exemple #1
0
 public int EvclidRecursion_Gcd_IsReturnGcd(int first, int second)
 {
     return(Gcd.EvclidRecursion(first, second));
 }