Advertisement
irapilguy

Untitled

Oct 20th, 2021
875
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.10 KB | None | 0 0
  1. int gcd(int a, int b) {
  2.     if(b == 0)
  3.         return a;
  4.     if(a == 0)
  5.         return b;
  6.     return gcd(b, a % b);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement