如果該項目在數組中,請計算它在數組中存儲的次數以及它們各自的陣列位置。如何使用C++在數組中搜索一個項目?
如何在我的程序中添加此輸出。
這裏是我的代碼...
int array[15]={28,3,16,4,3,16,5,8,4,12,5,4,8,21,40};
int x=0;
int done=0;
int item;
cout<<"Input an item to be searched:";
cin>>item;
while(done!=1&&x<15)
{
if(item==array[x])
{
cout<<"Found item"<<item<<" in the index of " <<x;
done=1;
}
else
{
x++;
}
}
cout<<" item "<<item<<" is not found";
這應該是輸出:
項目要搜索:4
號發生:3
數組位置:3 8 11
你的問題到底是什麼? – KjMag
大學作業不費力氣。 –
聽起來像功課 – rock321987