Unäre Operatoren

temi

Top Contributor
Tipp: Wenn du den Ablauf nicht direkt im Kopf durchspielen kannst, dann nimm dir Zettel und Stift zu Hand und schreib dir die Werte für jeden Schleifendurchlauf auf.
 

temi

Top Contributor
für erste Aufgabe weiß ich, warum a=10 ist. aber ich verstehe nicht, warum b 0 ist.
Weil die Anweisung im Schleifenrumpf (b--) genau so oft ausgeführt wird, solange a die Bedingung erfüllt.

Aus der Java-Dokumentation:
The for statement provides a compact way to iterate over a range of values. Programmers often refer to it as the "for loop" because of the way in which it repeatedly loops until a particular condition is satisfied. The general form of the for statement can be expressed as follows:

for (initialization; termination; increment) {
statement(s)
}

When using this version of the for statement, keep in mind that:

  • The initialization expression initializes the loop; it's executed once, as the loop begins.
  • When the termination expression evaluates to false, the loop terminates.
  • The increment expression is invoked after each iteration through the loop; it is perfectly acceptable for this expression to increment or decrement a value.
 
Zuletzt bearbeitet:

Neue Themen


Oben