| < Zurück | Vorwärts | Inhalt > |
(DI
Wittner Michael)
|
if - Anweisung for-, while-, do-while Anweisung switch-Anweisung
| if
(condition) {
statements; } if (condition) {
if (condition) {
|
if
(condition)
{ statements; } if (condition)
if (condition)
|
| for
(initialization; condition; update) {
statements; } while (condition) {
do {
|
for
(init; cond; update)
{ statements; } while (condition)
do
|
| switch
(event) {
case ABC: statements; break; case DEF: statements; break; default: break; } |
switch
(event)
{ case ABC: statements; break; case DEF: statements; break; default: break; } |