#include using namespace std; const int MAX_CUSTOMERS = 5; int main() { int num[MAX_CUSTOMERS]; int i = 0; int key = 0; bool found = false; for (i = 0; i < MAX_CUSTOMERS; i++) { cout << "Enter your score: "; cin >> num[i]; } cout << "Enter a score that you'd like to search for: "; cin >> key; for (int j = 0; j < MAX_CUSTOMERS; j++) { if (num[j] == key) { cout << "Found it in position " << j << endl; found = true; break; } } if (found == false) { cout << "You didn't find it " << endl; } return 0; }// end of main