forked from menault/TD4_DEV51_Qualite_Algo
13 lines
405 B
Python
13 lines
405 B
Python
|
def Function3(x):
|
||
|
valeur = 0 # Initialisation
|
||
|
if x < 0: # Cas où x est négatif
|
||
|
valeur = -x
|
||
|
if x == 0: # Cas où x est égal à 0
|
||
|
pass # Ne fait rien
|
||
|
if x > 0: # Cas où x est positif
|
||
|
valeur = x
|
||
|
return valeur
|
||
|
print(Function3(-10)) # Exemple avec x = -10
|
||
|
print(Function3(0)) # Exemple avec x = 0
|
||
|
print(Function3(7)) # Exemple avec x = 7
|