我正在尝试输出i
for the loop的值index(i)
,但仅在最后一次迭代中。我要么得到一个错误,要么它输出i
. 这是我到目前为止所拥有的:
boolean sequentialSearch(int x) {
for(int i = 0; i < n; i++) //n comes from function length()
if(n != 0) {
if(list[i] == x) {
return true;
}
return false;
}
}