This commit is contained in:
Simoes Lukas
2025-01-07 15:07:12 +01:00
parent f7764aa296
commit 59f7eead89
21 changed files with 475 additions and 16 deletions

8
DEV1.1/CM2/moyenne.c Normal file
View File

@@ -0,0 +1,8 @@
double moyenne(int* t, int len) {
int i;
int somme = 0;
for (i = 0; i != len; i++) {
somme += t[i];
}
return somme/len;
}