문제 설명
문자열 str이 주어질 때, str을 출력하는 코드를 작성해 보세요.
제한사항
1 ≤ str의 길이 ≤ 1,000,000
str에는 공백이 없으며, 첫째 줄에 한 줄로만 주어집니다.
입출력 예
입력 #1
HelloWorld!
출력 #1
HelloWorld!
코드
#include <iostream>
#include <string>
using namespace std;
int main(void) {
string str;
cin >> str;
int length = str.length();
if (length >= 1 && length <= 1000000)
{
for(int i = 0; i < length; i++) {
if (isspace(str[i]) == 0) {
cout << str[i];
}
}
}
return 0;
}
'C++ > Programmers' 카테고리의 다른 글
[프로그래머스/C++] 006_덧셈식 출력하기 (0) | 2024.03.02 |
---|---|
[프로그래머스/C++] 005_특수문자 출력하기 (0) | 2024.03.02 |
[프로그래머스/C++] 004_대소문자 바꿔서 출력하기 (0) | 2024.03.02 |
[프로그래머스/C++] 003_문자열 반복해서 출력하기 (0) | 2024.03.02 |
[프로그래머스/C++] 002_a와 b 출력하기 (0) | 2024.03.02 |