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; }
"assignmentexpert.com" is professional group of people in Math subjects! They did assignments in very high level of mathematical modelling in the best quality. Thanks a lot
Comments