/** Grundlagen der Informatik 
 *  Beispiel elementarer Datentyp boolean
 */
public class BooleanTest1 {
    public static void main(String args[]) {
        boolean a = false;                   // Deklaration und Initialisierung von
        boolean b = true;                    // booleschen Variablen
        boolean c;                           // mit der Bezeichnung a,b,c
        c = (true || a) && b;                // Zuweisung und boolesche Operationen
        System.out.println(c);               // Ausgabe von c

    }  // main

}  // BooleanTest1
