| Author |
Sorting a numerical Array
|
valaree k.
Greenhorn
Joined: Nov 20, 2005
Posts: 1
|
|
Hello everyone! I am working on a small project for school with the following requirements: - Create a program that requests the user to enter five integers - Place these values into an array called myArr - Type any sorting method into this program that will sort the array myArr Here is my code: This is the exception I am getting: I am lost =( Any help or suggestions would be much appreciated!
|
 |
I Wayan Saryada
Ranch Hand
Joined: Feb 05, 2004
Posts: 83
|
|
Halo, The java.lang.ArrayIndexOutOfBoundsException means that your are trying to access an array object with an index larger than the current data inside the array. Array in Java is zero indexed, which means the array index start from zero. So if you have five items in it (array length = 5) it means the index if from 0 to 4. In your code you have five items in the array, this mean the maximum array index is 4. To fix the error in your code you have to change the for loop condition check in insertionSort() method. Regards, Wayan
|
Website: Learn Java by Examples
|
 |
 |
|
|
subject: Sorting a numerical Array
|
|
|