2019-10-31 11:01:56 +00:00
parent 64258f22f3
commit ef9d953595

11
Switch-Anweisung.md Normal file

@@ -0,0 +1,11 @@
# Syntax switch-Anweisung
```
switch (ausdruck) {
case constant:
anweisungen;
(break;)
default:
anweisungen;
}
```