Feat(NSI): V1 du devoir
This commit is contained in:
10
1NSI/Evaluations/DS_2023-01-09/annexes/QCM_if.py
Normal file
10
1NSI/Evaluations/DS_2023-01-09/annexes/QCM_if.py
Normal file
@@ -0,0 +1,10 @@
|
||||
a = 3
|
||||
b = 4
|
||||
if a > b and a == 3:
|
||||
print('vert')
|
||||
if a > b and b == 4:
|
||||
print('rouge')
|
||||
if a == 4 or b > a:
|
||||
print('bleu')
|
||||
if a == 3 or a < b:
|
||||
print('jaune')
|
||||
Reference in New Issue
Block a user