我試圖輸出i
的值index(i)
,但僅在最後一次迭代時輸出。我要麼得到一個錯誤,要麼輸出i
的所有值。以下是我迄今爲止:僅在最後一次迭代時輸出For循環的值
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;
}
}
你的代碼有幾個問題,你能解釋一下你想做什麼嗎? – nachokk