본문 바로가기
C++

[프로그래머스] 문자열 출력하기

by 띰쥬 2025. 8. 26.
728x90
반응형
SMALL

#include <iostream>
#include <string>

using namespace std;

int main(void) {
    string str;
    cin >> str;
    cout << str << endl;
    return 0;
}

728x90
반응형
LIST

'C++' 카테고리의 다른 글

[프로그래머] 문자열 반복해서 출력하기  (0) 2025.08.26
[프로그래머스] a와 b 출력하기  (0) 2025.08.26
[백준] 문제 #10926  (0) 2025.08.19
[백준] 문제 #10869  (0) 2025.08.19
#pragma once  (0) 2025.04.14

댓글