#include using namespace std; int main() { const int N = 100; srand(time(0)); int a[N]; int num, i; bool found; for (int i = 0; i < N; i++) a[i] = rand() % 50+ 1; cout <<"Enter Number to serach: "; cin >> num; found = false; for (i = 0; i < N; i++) if (a[i] == num ) { found = true; break; } if (found ) cout <