Algorithmique (6/14) - Les conditions (Si - Sinon) - Structures conditionnelles

Conditions (or conditional structures known as if-else) are crucial in an algorithm (or computer program). They are part of a larger family called control structures. In an algorithm, some instructions are executed only if certain conditions are met. To express these conditions and the treatments that depend on them, we use conditional structures with the help of the keywords if, then, else and finite. Conditions can be nested like the rest of the control structures. In this course we will see how to insert and use conditions in an algorithm.