728x90
반응형
SMALL
#include <iostream>
#include <string>
using namespace std;
int main(void) {
string str;
cin >> str;
for(auto c : str)
{
cout << c << endl;
}
return 0;
}
728x90
반응형
LIST
'C++' 카테고리의 다른 글
[프로그래머스] 문자열 겹쳐쓰기 (0) | 2025.08.26 |
---|---|
[프로그래머스] 홀짝 구분하기 (0) | 2025.08.26 |
[프로그래머스] 문자열 붙여서 출력하기 (0) | 2025.08.26 |
[프로그래머스] 덧셈식 출력하기 (0) | 2025.08.26 |
[프로그래머스] 특수문자 출력하기 (0) | 2025.08.26 |
댓글