1 / 2

Lösung 7.1

Lösung 7.1. Geben Sie Beispiele für lexikalische Strukturelemente: Bezeichner, Literale, Schlüsselworte, ... syntaktische Strukturelemente: Alle Elemente aus „Algorithmenentwurf“ der Programmiersprache C++ an Formulieren Sie die Semantik

mayda
Download Presentation

Lösung 7.1

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Lösung 7.1 • Geben Sie Beispiele für • lexikalische Strukturelemente: Bezeichner, Literale, Schlüsselworte, ... • syntaktische Strukturelemente: Alle Elemente aus „Algorithmenentwurf“ der Programmiersprache C++ an • Formulieren Sie die Semantik • einer while-Schleife: siehe Schleief mit vorausgehender Prüfung • eines Unterprogrammaufrufes siehe „Block“ • recherchieren Sie nach weiteren Programmiersprachen Algol 60, Algol 68, Forth, PL/1, Fortran, Smalltalk, Simula 67, SETL, Snobol, Cobol, Pascal, Turbo-Pascal, DELPHI, Concurrent Pascal, SPSS, CLU, Alphard, SDL, Oberon, Oberon-2, Object Cobol, Ada, APL, CDL 2, Ada 95, Mesa, Modula-2, Chill, BCPL, C, Objective-C, Modula-3, C++, ,Assemblersprachen, Prolog, Prolog II, Eiffel, Beta, Opal, CS,P Hope, Miranda, Lisp, Common Lisp, PHP, Perl, Scheme, Haskell, Standard ML, Clipper, Basic, Visual Basic, Java, JavaScript, SQL, Late,x Postscript, HTML, UML, Z, Act-One, VDM, awk, LEX, YACC, Maschinensprachen, RPG, Occam, Linda, T Lotus, OPS-5, ...  werden Sie zu Meta-Programmierern und -Programiererinnen

  2. Lösung 7.2 • Geben Sie reguläre Ausdrücke für • Integerliterale: [1-9][0-9]* bzw. (1|2|3|4|5|6|7|8|9)(o|1|2|3|4|5|6|7|8|9)* • while, function, if while usw. bzw. ‘w‘‘h‘‘i‘‘l‘‘e‘ usw. • Geben Sie einen regulären Ausdruck zu folgenden Sprachen an: • Alle Folgen von Großbuchstaben, die jeden Vokal genau einmal in alphabetischer Reihenfolge enthält:KONS = [B-DF-HJ-NP-TV-Z]{KONS}A{KONS}E{KONS}I{KONS}O{KONS}U{KONS} • Alle Dualziffernfolgen, die „001“ nicht als Teilfolge enthalten(o?1+)*0* • Welche Sprachen sind durch die folgenden regulären Ausdrücke definiert ? • (0?|1*)* alle Binärzahlen, denn (0|1) ist Teilmenge von (0?|1*) • (0|1)*0(0|1)(0|1) alle Binärzahlfolgen, bei denen die drittletzte Ziffer existiert und 0 ist • /\*((\*[^/])|[\*])*\*/ „wohlgeformte“ C-Kommentare

More Related