Add templates

This commit is contained in:
Henri Burau 2020-03-24 17:30:20 +01:00
parent d8e583ef7d
commit 170f154a65
6 changed files with 60 additions and 28 deletions

8
assertions.md Normal file
View File

@ -0,0 +1,8 @@
---
title: Assertions
description: Folien für Assertions in Java
url: https://git.haw-hamburg.de/pm1-tutorium/slides
---
# Assertions

12
kontrollstrukturen.md Normal file
View File

@ -0,0 +1,12 @@
---
title: Kontrollstrukturen
description: Folien für Kontrollstrukture in Java
url: https://git.haw-hamburg.de/pm1-tutorium/slides
---
# Kontrollstrukturen
Kontrollstrukturen V1F60
* Sequenz
* Selektion V2F81
* Wiederholung (Iteration)

View File

@ -3,10 +3,19 @@ title: Operatoren
description: Folien für das erste Tutorium in Programmieren 1
url: https://git.haw-hamburg.de/pm1-tutorium/slides
---
# Operatoren
```java
class String {
private int rest = 233234 % 6; //Kommentar
}
```
# Operatoren
Eva Meinen und Henri Burau
---
Vorzeichen: +, - +, -, *, /, %
präfix: ++, --
logische Operatoren: ! && ||
Vergleiche <, <=, >, >= ==, != -> == prüft und = weist zu Prioritäten
Ideen für Aufgaben: - 3 * 5 - 14 % 5 - true && false - false || true - +3 -6 - int x = 0;
- x += 3; - x =+ 5;
- int i = 3;
int b = ++i - 1;
int c = i++ * 6;

View File

@ -14,28 +14,8 @@ Meeting mit Michael vereinbaren
## Themen für Folien:
Kontrollstrukturen V1F60
* Sequenz
* Selektion V2F81
* Wiederholung (Iteration)
Variablen V1F69, V2F14ff
* Welche Identifier sind erlaubt und sinnvoll? (keine Keywords)
* Literale V2F14
* Datentypen
* Ausdrücke
* Zuweisungen
* Anweisung (Zeile getrennt durch ";")
Typumwandlungen V2F36
Operatoren V2F46
Assertions alt:V4F13
(Ausgaben auf die Konsole V1_F80)
<!--
Themen vielleicht für Folien:
Syntax und Semantik V1F25
Online-Resource
/>

8
typumwandlungen.md Normal file
View File

@ -0,0 +1,8 @@
---
title: Typumwandlungen
description: Folien für Typumwandlungen in Java
url: https://git.haw-hamburg.de/pm1-tutorium/slides
---
# Typumwandlungen

15
variablen.md Normal file
View File

@ -0,0 +1,15 @@
---
title: Variablen
description: Folien für Variablen in Java
url: https://git.haw-hamburg.de/pm1-tutorium/slides
---
# Variablen
Variablen V1F69, V2F14ff
* Welche Identifier sind erlaubt und sinnvoll? (keine Keywords)
* Literale V2F14
* Datentypen
* Ausdrücke
* Zuweisungen
* Anweisung (Zeile getrennt durch ";")