/*Implement a class CppArray which is identical to a one-dimensional C++ array except for the following:다음 내용을 제외하고는 C++ 일차원배열과 동일한 CppArray 클래스를 구현하라(i) it performs range checking(i) 이 클래스는 범위를 체크한다(ii) it allows one array to be assigned to another array through the use of the assgnment operator(ii) 이 클래스는 = 연산자를 통해 다른 배열로 지정될 수 있다.(iii) It supports a function that returns the size of the array..