update exo

This commit is contained in:
Vincent Guillet
2025-04-02 11:36:40 +02:00
parent c8e200b42f
commit ffa14f55ad
4 changed files with 0 additions and 62 deletions

View File

@@ -0,0 +1,33 @@
a entier
b entier
c entier
debut
a = 5
b = 7
c = a //c = 5
a = b //a = 7
b = c //b = 5
fin
-----------------------------
a entier
b entier
debut
a = 5
b = 7
b = b - a //b = 2
a = a + b //a = 7
b = a - b //b = 5
fin