First commit
This commit is contained in:
10
IUT/Info1/TD/Exercices/9.1_PGCD/fonction.h
Normal file
10
IUT/Info1/TD/Exercices/9.1_PGCD/fonction.h
Normal file
@@ -0,0 +1,10 @@
|
||||
/*
|
||||
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);
|
||||
Reference in New Issue
Block a user