Glossaire du langage algorithmique et traductions
Énoncé/Instruction composé

Syntaxealg : Bloc

Début

| instruction1

| instruction2

| ...

Fin

SyntaxeC/C++ : Bloc

{

instruction1;

instruction2;

...

}

SyntaxeJava : Bloc

{

instruction1;

instruction2;

...

}

SyntaxePython : Bloc

Bloc: #<- deux points

  instruction1 #indentation

  instruction2 #même indentation

  ...