Einzelnen Beitrag anzeigen
Ungelesen 15.10.10, 13:12   #5
Xalir
Erfahrener Newbie
 
Registriert seit: Mar 2009
Beiträge: 154
Bedankt: 56
Xalir ist noch neu hier! | 0 Respekt Punkte
Standard

Ich habe mich noch nie so richtig mit Java beschäftigt aber was mir auffällt:

Zitat:
2. Modify the program While to use the length property of an array.
Code:
while (i <= 5) // loop variable still in range?
wäre wohl besser so zu schreiben

Code:
while (i <= F.length) // loop variable still in range?
Xalir ist offline   Mit Zitat antworten