Lernpfad:Einführung in Processing/14: Unterschied zwischen den Versionen

keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 39: Zeile 39:
{{Aufgabe:Start}}
{{Aufgabe:Start}}
# Analysiere die folgenden Programmzeilen und gib eine Vermutung ab, ob das Ergebnis <code>true</code> oder <code>false</code> ist. Probiere ''erst dann'' die Zeilen (einzeln) in {{Processing}} aus.
# Analysiere die folgenden Programmzeilen und gib eine Vermutung ab, ob das Ergebnis <code>true</code> oder <code>false</code> ist. Probiere ''erst dann'' die Zeilen (einzeln) in {{Processing}} aus.
# <code>println(width < 4000 || height < 100);</code>
## <code>println(width < 4000 || height < 100);</code>
# <code>println(width < 4000 && height < 100);</code>
## <code>println(width < 4000 && height < 100);</code>
# <code>println(width < 4000 && height < 4000);</code>
## <code>println(width < 4000 && height < 4000);</code>
# <code>println(width > 500 && height < 4000);</code>
## <code>println(width > 500 && height < 4000);</code>
# <code>println(width == height || width != height);</code>
## <code>println(width == height || width != height);</code>
# <code>println(width-height == height-width);</code>
## <code>println(width-height == height-width);</code>
{{Aufgabe:End}}
{{Aufgabe:End}}


8.581

Bearbeitungen