1번.비행기를 나타내는 Plane라는 이름의 클래스를 설계하라. Plane 클래스는 식별번호, 모델 승객수를 멤버 변수로 가지고 있다.-멤버 변수를 정의하라. 모든 멤버 변수는 전용 멤버로 하라-모든 멤버 변수에 대한 접근자와 설정자 멤버 함수를 작성한다.#include using namespace std;class Plane{ private: string Model; int CusNum; int Number;public: Plane(); ~Plane(); void setModel(string x);void setCusNum(int x);void setNumber(int x);void setAll(string a, int b, int c);void getModel();void getCusNum();..