#include using std::endl; using std::cout; using std::cin; using std::ostream; using std::istream; //////string 헤더 구현//////// class string{ //string객체 선언 int len; //길이 char* str; //멤버 변수 public: string(const char* s=NULL); //생성자 string(const string& s); //깊은복사생성자 ~string(); //소멸자 string& operator=(const string& s); //깊은 복사 대입연산자 string& operator+=(const string& s); //리턴타입이 참조 bool operator==(con..