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
No related branches found
No related tags found
No related merge requests found
......@@ -289,7 +289,7 @@ pour i de 1 à SIZE - 1
int index = 0;
float min = tab[0];
for (int i = 1; i < SIZE; ++i) {
if min > tab[i] {
if (min > tab[i]) {
min = tab[i];
index = i;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment