Răspuns:
#include <iostream>
using namespace std;
int main()
{
int vect[255], n, x;
cout << "Numarul de elemente : "; cin >> n;
cout << "Elementele : ";
for (int index = 0; index < n; index++)
cin >> vect[index];
cout << "Elementul cautat : "; cin >> x;
for (int index = 0; index < n; index++)
if (vect[index] == x) {
cout << "Elementul se afla in vector.";
return 0;
}
cout << "Elementul nu se afla in vector.";
return 0;
}
Explicație: