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

This flashcard is just one of a free flashcard set. See all flashcards!

All main topics / Informatik / Java / Informatik 11 - VDB
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")
}
Tags: if-Anweisung
Source: Kapitel 5
New comment
Flashcard info:
Author: vdboom
Main topic: Informatik
Topic: Java
Published: 14.09.2009

Cancel
Email

Password

Login    

Forgot password?
Deutsch  English