-
명품 C++ 5장 3번C++ 2018. 10. 31. 17:23
3. 다음과 같이 작동하도록 combine() 함수를 작성하라.
소스코드
#include <iostream>using namespace std;#include <string>void combine(string t1,string t2,string &t3) {t3 = t1 +" "+ t2;}int main() {string text1("I love you"), text2("very much");string text3;// 비어있는 문자열combine(text1, text2, text3); // text1과 " ", 그리고 text2를 덧붙여 text3 만들기cout << text3; // "I love you very much" 출력}실행결과
combine 함수에서 main함수와 text3 을 공유해야하기 때문에 참조에 의한 호출로 작성하였습니다.
'C++' 카테고리의 다른 글
명품 C++ 5장 5번 (0) 2018.10.31 명품 C++ 5장 4번 (0) 2018.10.31 명품 C++ 5장 2번 (0) 2018.10.31 명품 C++ 5장 1번 (0) 2018.10.31 명품 C++ 4장 Open Challenge (3) 2018.10.30