설 연휴 2/16~18 + 대학교 졸업식 2/19 라이브러리 활용 표준 라이브러리 구성입출력, 문자열 처리, 컨테이너, 알고리즘, 기타 유틸리티 표준 라이브러리 사용헤더 포함# include iostream - cout string - 문자열(C++ 컴파일러에 따라 필요 여부 다름)#include #include using namespace std;int main() { string str1("Hello"); cout Hello H e l l o length, size - 문자열 길이 구하기#include #include using namespace std;int main() { string str1("Hello"); cout Hello 5 5 empty - 빈 문자열 검사하기#include #..