This flashcard is just one of a free flashcard set. See all flashcards!
8
If-Anweisung
Eine If-Anweisung ist eine Abfrage bei der eine Bedingung überprüft wird.
Syntax: if (boolsche_operation) dann_anweisung;
(alternativ kann die Anweisung auch ein Code-Block sein)
Falls der if-Fall nicht zutrifft kann man einen else-Block hinzufügen:
if (boolsche_operation) {
(...)
} else {
(...)
}
oder ohne Codeblock:
if (boolsche_operation)
dann_anweisung;
else sonst_anweisung;
Als beispiel Code in Java:
int a = 3;
if (3 < a) {
System.out.print(a);
}
else {
System.out.print("else")
}
Syntax: if (boolsche_operation) dann_anweisung;
(alternativ kann die Anweisung auch ein Code-Block sein)
Falls der if-Fall nicht zutrifft kann man einen else-Block hinzufügen:
if (boolsche_operation) {
(...)
} else {
(...)
}
oder ohne Codeblock:
if (boolsche_operation)
dann_anweisung;
else sonst_anweisung;
Als beispiel Code in Java:
int a = 3;
if (3 < a) {
System.out.print(a);
}
else {
System.out.print("else")
}
Tags: if-Anweisung
Source: Kapitel 5
Source: Kapitel 5