Bonjour,
J'ai 3 algorithmes simplifiés proposés pour calculer une remise (taux) en fonction d'un chiffre d'affaire (CA) :
ALGO 1 :
If CA < 10000
then taux <- 10%
end if
If CA < 20000
then taux <- 20%
else taux <- 30%
end if
ALGO 2 :
If CA < 10000
then taux <- 10%
else if CA < 20 000
then taux <- 20%
else taux <- 30%
end if
end if
ALGO 3 :
If CA < 10000
then taux <- 10%
end if
If CA < 20000
then taux <- 20%
end if
If CA > 20000
then taux <- 30%
end if
Pour un CA de 9000 euros, je pense que :
- l'algo 1 renvoie un taux de 20%
- l'algo 2 10%
- l'algo 3 20%.
(Pour chaque algorithme, mes choix de réponses (QCM) sont 10,20,30 ou sans objet.)
Vous êtes d'accord ?
Merci d'avance.
-----