Algorithme.
Par Matt • 11 Juin 2018 • 1 546 Mots (7 Pages) • 523 Vues
...
int i =-1, j =0, k = 15;
char temp;
Console.WriteLine("Les couleurs sont maintenant ordonnées :");
while (j!=k)
{
if(t[j]==’B’)
{
temp = t[j];
t[j] = t[i+1];
t[i+1] = temp;
i++;
j++;
}
else if (t[j]==’W’)
{
j++;
}
else
{
temp = t[j];
t[j]=t[k-1];
t[k-1] = temp;
k--;
}
}
}
}
static void Main(string[] args)
{
drapeauHollandais d = new drapeauHollandais(15);
d.afficher();
d.reordonne();
d.afficher();
Console.ReadLine();
}
}
}
...