Created
December 1, 2019 23:50
-
-
Save ivang7/4f7748c23600336bda3417fc31205cd9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public int gcd(int a, int b) { return a!= 0 ? gcd(b % a, a) : b; } | |
public int mlc(int a, int b) { return (a * b) / gcd(a, b); } | |
http://www.cyberforum.ru/csharp-beginners/thread105689.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment