int 型の配列内の値を出力する場合。何らかの理由で、リストの最後の値を出力し続けます
public class Algorithm {
/**
* @param args the command line arguments
*/
int list[] = {10, 9, 8, 7, 6};
public void printList(){
for (int x: list ) {
System.out.print(x);
}
}
public static void main(String[] args) {
Algorithm alg = new Algorithm();
alg.printList();
}
}
66666 が表示されます。配列のすべての値を出力するにはどうすればよいですか?