Advertisement
irapilguy

Untitled

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