home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_09 / allison / gcd.c < prev    next >
Encoding:
Text File  |  1994-07-10  |  152 b   |  14 lines

  1. int gcd(int x, int y)
  2. {
  3.     int rem;
  4.  
  5.     while (y != 0)
  6.     {
  7.         rem = x % y;
  8.         x = y;
  9.         y = rem;
  10.     }
  11.     return x;
  12. }
  13.  
  14.