Files
CITISE1/IUT/Info1/TD/Exercices/9.1_PGCD/fonction.h
2026-04-08 20:11:20 +02:00

10 lines
225 B
C

/*
Calcul du PGCD de a et b avec l'algorithme d'euclide
Arguments:
a et b 2 entiers positifs
Returns:
le pgcd de a et b un entier positif
*/
unsigned int pgcd(unsigned int a, unsigned int b);