int main() { const int N = 5; int arr[N] = { 10, 46, -37, 8, 19 };
int number_to_find = 8; for (int i = 0; i < N; ++i) { & if (arr[i] == number_to_find) { & cout << "Number " << number_to_find << " is found at index " << i << endl; & break; & } } return 0; }
Comments
Leave a comment