12-1번 #include #include using namespace std; class Dept { int size; int* scores; public: Dept(int size) { this->size = size; scores = new int[size]; } //생성자 /*Dept(const Dept& dept) { this->size = dept.size; this -> scores = new int[size]; for (int i = 0; i < size; i++) { scores[i] = dept.scores[i]; } }*///복사생성자 //~Dept() { delete[] scores; }//소멸자 소멸자를 적지 않는다면 힙메모리를 터트릴게 없어서 상관이 없어진다 int getSize..