1 / 7

Was ist eine Syntax? – Ein bierseliger Bayer im Himmel 5.1 Syntax des frohlockenden Bayern Alois

Was ist eine Syntax? – Ein bierseliger Bayer im Himmel 5.1 Syntax des frohlockenden Bayern Alois 5.2 Sprachenvielfalt 5.3 Interpreter versus Compiler 5.4 Java ist plattformenunabhängig 5.5 Übungen 6  Grunddatentypen in Java 6.1 Die Typen int und double 6.2 Übungen.

binah
Download Presentation

Was ist eine Syntax? – Ein bierseliger Bayer im Himmel 5.1 Syntax des frohlockenden Bayern Alois

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. Was ist eine Syntax? – Ein bierseliger Bayer im Himmel • 5.1 Syntax des frohlockenden Bayern Alois • 5.2 Sprachenvielfalt • 5.3 Interpreter versus Compiler • 5.4 Java ist plattformenunabhängig • 5.5 Übungen • 6  Grunddatentypen in Java • 6.1 Die Typen int und double • 6.2 Übungen Informatikgrundkurs (Pohlig-Häberle)

  2. 5.1 Syntax des frohlockenden Bayern Alois Man prüfe, ob die nachfolgenden Sätze, Sätze der Sprache Frohlocken sind: haleluja!halleluja,hahahalleluuja!hosianna!luja, sag i! (nach 3 Gläsern des landestypischen Getränkes) Informatikgrundkurs (Pohlig-Häberle)

  3. Semiotik: Syntax-Semantik-Pragmatik Syntax: welcher Beziehung die Zeichen einer Sprache zueinander stehen können. Semantik: Bedeutung von Zeichen Pragmatik: Beziehung zu Gegenständen außerhalb der Sprache. "das Haus " eine Aneinanderreihung von 8 Zeichen. Leerzeichen trennt zwei Wörter Gegenstand der realen Weltgehört. Informatikgrundkurs (Pohlig-Häberle)

  4. 5.2 Sprachenvielfalt Informatikgrundkurs (Pohlig-Häberle)

  5. 5.3 Interpreter versus Compiler Interpreter Compiler Java-Compiler und Java VM Informatikgrundkurs (Pohlig-Häberle)

  6. 5.4 Java ist plattformenunabhängig Informatikgrundkurs (Pohlig-Häberle)

  7. 6.1 Die Typen int und double public class Muenzen1{public static void main(String args[])    {int euro = 3;int fünfziger = 3;int zehner = 5;int fünfer = 2;int zweier = 3;int einer = 3;double summe;      summe = euro * 1.0 +         fünfziger * 0.5 +         zehner * 0.1 +         fünfer * 0.05 +         zweier * 0.02 +  einer * 0.01; System.out.print("Sie haben in Ihrem Geldbeutel: ");      System.out.println(summe);    } } Informatikgrundkurs (Pohlig-Häberle)

More Related