First commit

This commit is contained in:
2026-04-08 20:11:20 +02:00
parent 10fe469c10
commit 79f15536a1
861 changed files with 135610 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
float racine_carree(float a, unsigned int n) {
float root = 1;
for (int i=0; i < n; i++) {
root = (root + a / root) / 2;
}
return root;
}