여기서 C++에서 여러 문자열을 한 줄로 연결하는 방법을 살펴보겠습니다. 이를 수행하는 몇 가지 다른 방법이 있습니다. 가장 쉬운 방법은 더하기(+) 연산자를 사용하는 것입니다. 문자열은 +를 사용하여 연결할 수 있습니다. 두 문자열 사이에 + 기호를 넣어 연결되도록 할 수 있습니다.
Input: Some strings “str1”, “str2”, “str3” Output: Concatenated string “str1str2str3”
알고리즘
Step 1: Take some strings Step 2: Concatenate them by placing + sign between them Step 3: Display the string Step 4: End
예시 코드
#include <iostream> using namespace std; int main() { string str1, str2, str3; str1 = "Hello"; str2 = "C++"; str3 = "World"; string res = str1 + str2 + str3; cout << res; }
출력
HelloC++World