Leave a Reply 1

Your email address will not be published. Required fields are marked *


Ryan

Ryan

The question is…
public class MyFor1 {
public static void main (String[] args) {

int[] x = {6,7,8};
for (int i : x) {
System.out.print(i + ” “);
i++;
}
}
}

and the answer is..
E