Write a program to find the number in the array.
#include <iostream>
using namespace std;
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;
}
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
C++