#include <iostream> #include <time.h> #include <stdlib.h> using namespace std; int *A, n = 5; void nhapMang(int *&A, int n) { A = new int; for (int i = 0; i < n; i++) { *(A+i) = rand()%100;// tao so ngau nhien } } void xuatMang(int *A, int n) { // xuat cac gitr trong mang for (int i = 0; i < n; i++) { cout<<A[i]<<"\t"; } } void xoagiatri(int *A, int &n, int x) { // xoa tri trong mang for (int i = x; i < n; i++) { A[i] = A[i+1]; } n--; } void xuatSochan(int *A, int &n) { for (int i = 0; i < n; i++) { if (A[i] % 2 != 0) { xoagiatri(A, n, i); // dung de xoa phat tu so le trong mang i--; } } } int main() { nhapMang(A,n); cout<<"Xuat mang: "<<endl; xuatMang(A,n); cout<<"\nXuat so chan co trong mang: "<<endl; xuatSochan(A,n); xuatMang(A,n); return 0; }