cours programmtion
Ce tableau permet la traduction de l’algorithme vers
le langage pascal
Algorithme
|
Pascal
|
Algorithme
|
program
|
Nom_algorithme
|
Nom_algorithme ;
Uses wincrt ;
|
Variables :
|
var
|
constantes
|
const
|
Réel
|
Real ;
|
Entier
|
Integer ;
|
Chaine de caracteres
|
String ;
|
caractere
|
Char ;
|
logique
|
Boolean ;
|
debut
|
Begin
|
fin
|
End.
|
←
|
:=
|
Lire()
|
Read() ;
|
Ecrire()
|
Write() ;
|
Lire() et retourner à la
ligne
|
Readln() ;
|
Ecrire() et retourner à la
ligne
|
Writeln() ;
|
si
|
if
|
alors
|
then
|
sinon
|
else
|
Selon nom_variable
|
Case nom_variable of
|
non
|
not
|
et
|
and
|
ou
|
or
|
0 commentaires: