--- jupyter: jupytext: text_representation: extension: .md format_name: myst kernelspec: display_name: C++17 language: C++17 name: xcpp17 --- ### Objectif pédagogique : opération "or" ```{code-cell} c++ --- editable: false tags: [hide-cell] --- #include <iostream> #include "jupyter_exercizer_helpers.hpp" using namespace std; ``` +++ ```{code-cell} c++ --- tags: [hide-cell, variable] --- CONST I1 = RANDOM_INT(-1, 4); I1 ``` +++ ```{code-cell} c++ --- tags: [hide-output, substitution] --- int x = I1; bool r = x < 0 or x > 2; ``` +++ :::{admonition} Consigne Quelle est la valeur attendue de `r`? ::: ```{code-cell} --- editable: true nbgrader: grade: false grade_id: init locked: false schema_version: 3 solution: true --- bool result = INPUT( /// BEGIN SOLUTION r /// END SOLUTION ); ``` +++ ```{code-cell} --- editable: false nbgrader: grade: true grade_id: check locked: true points: 1 schema_version: 3 solution: false tags: [hide-cell] --- CHECK( result == r ); ```