문제 설명
두 개의 문자열 str1, str2가 공백으로 구분되어 입력으로 주어집니다.
입출력 예와 같이 str1과 str2을 이어서 출력하는 코드를 작성해 보세요.
제한사항
1 ≤ str1, str2의 길이 ≤ 10
입출력 예
입력 #1
apple pen
출력 #1
applepen
입력 #2
Hello World!
출력 #2
HelloWorld!
코드
#include <iostream>
#include <string>
using namespace std;
int main(void) {
string str1, str2;
cin >> str1 >> str2;
int length1 = str1.length();
int length2 = str2.length();
if(1 <= length1 && length1 <=10){
if(1 <= length2 && length2 <=10){
cout << str1+str2;
}
}
return 0;
}
'C++ > Programmers' 카테고리의 다른 글
[프로그래머스/C++] 009_홀짝 구분하기 (0) | 2024.03.02 |
---|---|
[프로그래머스/C++] 008_문자열 돌리기 (0) | 2024.03.02 |
[프로그래머스/C++] 006_덧셈식 출력하기 (0) | 2024.03.02 |
[프로그래머스/C++] 005_특수문자 출력하기 (0) | 2024.03.02 |
[프로그래머스/C++] 004_대소문자 바꿔서 출력하기 (0) | 2024.03.02 |