Need to write a method, that takes an array of integers, an integer index, and an integer value. The method should set the array element with the specified index to the specified value.
My code: int setElement(int[]array) {
int key;
for(int i=0; i<array.length; i++) {
if(array[i] == key)
return i;
}
return key;
}
think it is not quite right...
The answer to the question is available in the PDF file https://assignmentexpert.com/https://assignmentexpert.com/homework-answers/programming-answer-35485.pdf
Comments
Leave a comment