#include<iostream>
#include<string>
#include<conio.h>
using namespace std;
class MyArray{
public:
MyArray(int length);
~MyArray();
void Input();
void Display(string);
protected:
int *alist;
int length;
#include<iostream>
#include<string>
#include<conio.h>
using namespace std;
class MyArray{
public:
MyArray(int length);
~MyArray();
void Input();
void Display(string);
protected:
int *alist;
int length;