suppression ancien fichier cours Pile & File, et ajout des sujets bacs NSI
This commit is contained in:
BIN
Sujet_bac/Pratique/BNS_2025/25-NSI-12/25-NSI-12.pdf
Normal file
BIN
Sujet_bac/Pratique/BNS_2025/25-NSI-12/25-NSI-12.pdf
Normal file
Binary file not shown.
11
Sujet_bac/Pratique/BNS_2025/25-NSI-12/25-NSI-12.py
Normal file
11
Sujet_bac/Pratique/BNS_2025/25-NSI-12/25-NSI-12.py
Normal file
@@ -0,0 +1,11 @@
|
||||
def traduire_romain(nombre):
|
||||
""" Renvoie l'écriture décimale du nombre donné en chiffres
|
||||
romains """
|
||||
if len(nombre) == 1:
|
||||
return ...
|
||||
elif romains[nombre[0]] >= ...:
|
||||
return romains[nombre[0]] + ...
|
||||
else:
|
||||
return ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user