first commit with existing project files

This commit is contained in:
Vincent Guillet
2025-04-02 11:33:15 +02:00
parent f447ea8a0f
commit c8e200b42f
18 changed files with 515 additions and 0 deletions

33
algo Normal file
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