Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

// Move more out of the for loop.

class Empty2 {
public static void main(String args[]) {
int i;
i = 0; // move initialization out of loop
for(; i < 10; ) {
System.out.println("Pass #" + i);
i++; // increment loop control var
}
}
}

You might also like