Ce document a été produit par HEVEA.
Votre browser peut avoir a être configuré pour afficher correctement
certains symboles.
Reportez-vous à la documentation d'HEVEA.
INST | ::= | INSTS | AFFEC | SI | TANTQUE | ECRIRE | LIRE | REPETER |
REPETER | ::= | repeat INST while COND do INST |
repeat read (I) while I <> 0 do PRODUIT := PRODUIT * I
REPETER | ::= | repeat INST { ; INST } while COND do INST |
program dicho var sup, inf, val, essai ; begin sup := 1000 ; inf := 0 ; read (val) ; repeat begin write (sup) ; write (inf) ; essai := (sup+inf)/2 end while (val <> essai) do begin if (val < essai) then sup := essai-1 ; if (val > essai) then inf := essai+1 end ; write (essai) end .
Figure 1 : Programme à traduire en P-Code
Ce document a été traduit de LATEX par HEVEA.