Kontrollstrukturen Flashcards

1
Q

Schreibe ein Bespiel für ein switch statement

A
switch (expression) {
   case constant1: code block
   case constant2: code block
   default: code block
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Was passiert wenn ich kein break in switch statements benutze?

A

Alle case Blöcke werden ausgeführt.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly