i'm not sure this is what you want. but try break;.
for (int count = 0; count < 5; count++)
{
if (numbers[count] == choice)
{
cout << "VALUE FOUND: " << choice << endl;
break;
}
else...