+ 1
Enhanced for Loop
Fill in the blanks to use the enhanced for loop for an array called "arr": int total = 0; for(int x- --) { total += x; }
1 Antwort
+ 17
int total = 0;
for(int x:arr) {
total += x;
}
https://www.sololearn.com/learn/Java/2209/?ref=app