Skip to content

Commit ca7f5c4

Browse files
committed
modifier la solution pour matcher le vid yt
1 parent 26c7f41 commit ca7f5c4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

TD/TD1/EX1-Q1.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
c = int(input("Donner la valeur de c: "))
77

88
# Effectuer la permutation circulaire:
9-
temp = a
9+
temp = b
10+
b = a
1011
a = c
11-
c = b
12-
b = temp
12+
c = temp
1313

1414
# Écrire la resultat:
15-
print("a = ", a, " , b = ", b, " et c = ", c)
15+
print(a, b, c)

0 commit comments

Comments
 (0)