User Tools

Site Tools


atelier:coding_gouter:ppour:variables

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
atelier:coding_gouter:ppour:variables [2026-04-22 15:08] – ↷ Page moved from coding_gout_coding_gouter:pedagogique:ppour:variables to atelier:coding_gouter:ppour:variables Andrii Kurdiumovatelier:coding_gouter:ppour:variables [2026-04-22 15:09] (current) Andrii Kurdiumov
Line 18: Line 18:
  
 We will eventually show each of this usage during the course. We will eventually show each of this usage during the course.
 +
 +Example of variable declaration and usage
 +
 +<code>
 +a = 10
 +b = 100
 +afficher("Somme =", a + b)
 +afficher("Produit =", a * b)
 +x = 4
 +y = x*x - 9*x + 14
 +afficher("x = ", x)
 +afficher("y = x*x - 9*x + 14")
 +afficher("y = ", y)
 +</code>
atelier/coding_gouter/ppour/variables.1776870480.txt.gz · Last modified: by Andrii Kurdiumov