CoboCards App FAQ & Wishes Feedback
Language: English Language
Sign up for free  Login

Get these flashcards, study & pass exams. For free! Even on iPhone/Android!

Enter your e-mail address and import flashcard set for free.  
Go!
All main topics / Informatik / Java

Informatik 11 - VDB (29 Cards)

Say thanks
8
Cardlink
0
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")
}
Tags: if-Anweisung
Source: Kapitel 5
Flashcard set info:
Author: vdboom
Main topic: Informatik
Topic: Java
Published: 14.09.2009
 
Card tags:
All cards (29)
Aufruf (1)
Boolsche Operation (1)
char (1)
Compilieren Just-in-time-Compilierung (1)
Datentyp (2)
deklaration (1)
deklarieren (1)
Double (1)
Einleitung (1)
Einlesen von der Tastatur (1)
Einrückungen (1)
Entwicklungsumgebung (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)
Python JAVA IST SCHEISSE (1)
Schleife (1)
switch (1)
Tennisschlägergriff (1)
variable (1)
Variablen (1)
Vergleich (1)
Vergleichsoperation (1)
Wertezuweisung (1)
While-Schleife (1)
Report abuse

Cancel
Email

Password

Login    

Forgot password?
Deutsch  English