본문 바로가기
Thinking/BAEKJOON

C++ BAEKJOON 10926번 ??!

by Dev_카페인 2022. 8. 15.
반응형

[C++] BAEKJOON 10926번 : ??!

 

#include <iostream>
#include <string>

using namespace std;

int main()
{
	string str;
	
	cin >> str;

	cout << str + "??!" << endl;

	return 0;
}

#include <string> 추가해주는 것을 잊지 말자.

string 변수 + "문자열"을 지원한다.

반응형