#include "stdlib.h"
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <conio.h>
#include <math.h>
#include <tchar.h>
#include <iostream>
using namespace std;
#define max 100
khoảng trống nhap (int a [], int n)
{
for (int i = 0; i <n; i ++)
{
cout << "\ n nhap phan tu thu" << i << "";
cin >> a [i];
}
}
khoảng trống xuất (int a [], int n)
{
for (int i = 0; i <n; i ++)
cout << "\ n" << a [i] << "";
}
int timkiem (int a [], int n, int x)
{
int i = 0;
while (i <n && a [i]! = x)
i ++;
if (i == n)
return 0;
khác
trở về 1;
}
int main ()
{
int a [max], n, x, i;
cout << "\ n nhap n:";
cin >> n;
nhap (a, n);
cout << "\ n nhap x";
cin >> x;
if (timkiem (a, n, x) == 1)
cout << "da tim thể thay:" << x << "tromg mang!"; khác
cout << "khong tim thể thay !!!";
Trang 2xuat (a, n);
cout << "\ n";
hệ thống ( "tạm dừng"); return 0;
}