Boucle do - while
Description
La boucle do / while ("faire tant que" en anglais) fonctionne de la même façon que la boucle while, à la différence près que la condition est testée à la fin de la boucle, et par conséquent la boucle do sera toujours exécutée au moins une fois.
Syntaxe
Paramètres
- condition: expression booléenne dont le résultat peut être VRAI ou FAUX.
Exemple
Exemple 1
The result on Serial Monitor:
Exemple 2
do...while loop vs while loop
The while loop checks the condition before executing the block of code; conversely, the do while loop checks the condition after executing the block of code. Therefore, the do while loop will always be executed at least once, even if the condition is false at the beginning.
The do...while and while loop are the same, except for the case in which the condition is false at the beginning.
For example:
- Code with do...while loop
- Code with while loop
※ Remarque:
There are three ways to escape the do while loop:
※ ARDUINO BUY RECOMMENDATION
Arduino UNO R3 | |
Arduino Starter Kit |
Additionally, some links direct to products from our own brand, DIYables.