Skip to content
Snippets Groups Projects
Commit 6a10c451 authored by orestis.malaspin's avatar orestis.malaspin
Browse files

Merge branch 'yassin.elhakoun-master-patch-71771' into 'master'

Update cours_3.md (ligne 289 à 298: modifs syntaxe et initialisations variables manquantes)

See merge request algorithmique/cours!45
parents b60a03b4 c345fb92
Branches
No related tags found
No related merge requests found
...@@ -289,7 +289,7 @@ pour i de 1 à SIZE - 1 ...@@ -289,7 +289,7 @@ pour i de 1 à SIZE - 1
int index = 0; int index = 0;
float min = tab[0]; float min = tab[0];
for (int i = 1; i < SIZE; ++i) { for (int i = 1; i < SIZE; ++i) {
if min > tab[i] { if (min > tab[i]) {
min = tab[i]; min = tab[i];
index = i; index = i;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment