Grammatiken II

 [Vorheriges Kapitel]  [Vorherige Seite]  [Inhaltsverzeichnis]  [Nächste Seite]  [Nächstes Kapitel]

Expression = Term .
Expression = Term "+" Expression .
Expression = Term "-" Expression .
Term = Factor .
Term = Factor "*" Term .
Term = Factor "/" Term .
Factor = "(" Expression ")" .
Factor = "+" Factor .
Factor = "-" Factor .
Factor = Constant .
Constant = "0" .
Constant = "1" .
...
Constant = "9" .

VN = { Expression, Term, Factor, Constant }.

VT = { "+", "-", "*", "/", "(", ")", "0".."9" }.

S = Expression.

 [Vorheriges Kapitel]  [Vorherige Seite]  [Inhaltsverzeichnis]  [Nächste Seite]  [Nächstes Kapitel]
Copyright © 1999 Andreas Borchert, in HTML konvertiert am 29.06.1999