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?