basically my question is how can I just add the first three places of an array of size 5 and access them. I have been trying, but I just can't get it.
There is an array of students and i want to remove some elements of the array and print the rest:
Students[] temp = new Students[(sArray.length-1)];
int j = 0;
for(int i = 0; i < sArray.length; i++){
if (i != value ){
temp[j] = sArray[i];
j++;
}
sArray = temp;
count = count-1;
}
for(int i = 0; i < getCount(); i++){
// this will just print, but it is not printing,
// and count is the no of students.
result+= sArray[i].toString()+"\n";
result+="\n";
}