Exemple

public static void main( String[] args ) {
int i = 0;
for ( ; i < args.length ; ) {
System.out.println( args[ i ] );
i++;
}
}

Solution
Remplacez la boucle for par une boucle while.

public static void main( String[] args ) {
int i = 0;
while ( i < args.length ) {
System.out.println( args[ i ] );
i++;
}
}