12 lines
187 B
C++
12 lines
187 B
C++
#include "fonction.h"
|
|
|
|
unsigned int pgcd(unsigned int a, unsigned int b) {
|
|
unsigned int r;
|
|
|
|
while (b != 0) {
|
|
r = a % b;
|
|
a = b;
|
|
b = r;
|
|
}
|
|
return a;
|
|
} |