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
Flashcard set info:
Author: vdboom
Main topic: Informatik
Topic: Java
Published: 14.09.2009
Card tags:
All cards (29)
Aufruf (1)
char (1)
Datentyp (2)
deklaration (1)
deklarieren (1)
Double (1)
Einleitung (1)
Einrückungen (1)
For (1)
Hauptprogramm (2)
if-Anweisung (1)
Integer (1)
Java (2)
java (1)
Kapitel 2 (2)
Kapitel 3 (1)
Kapitel 4 (1)
Kapitel 5 (1)
Kapitel 6 (2)
Kommentare (1)
Lernkarte (1)
Methode (2)
Methodenaufruf (2)
Oliver (1)
Operation (1)
Schleife (1)
switch (1)
variable (1)
Variablen (1)
Vergleich (1)
Wertezuweisung (1)
While-Schleife (1)