c++ #c++을 c++ 답게 #string #c++문자열
c++ 문자열 테두리
c++ 문자열 테두리
2020.10.18// 이름을 묻고, 인사를 건넴 #include #include using namespace std; int main() { cout > name; // 출력하려는 메시지를 구성 const string greeting = "Hello, " + name + "!"; // 인사말의 두 번째 행과 네 번째 행 const string spaces(greeting.size(), ' '); const string second = "* " + spaces + " *"; // 인사말의 첫번째 행과 다섯 번째 행 const string first(second.size(), '*'); cout