Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save justinehell/6c66cfc7c16197411c90075b863147b2 to your computer and use it in GitHub Desktop.
Save justinehell/6c66cfc7c16197411c90075b863147b2 to your computer and use it in GitHub Desktop.
Début achatBonbons ( argent, prix )
nombreBonbons <- 0
Tant que prix > 0 ET argent-prix >= 0
argent <- argent-prix
nombreBonbons <- nombreBonbons + 1
Fin Tant que
retourner nombreBonbons
Fin achatBonbons
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment