반응형

문제 : https://www.acmicpc.net/problem/10172

풀이방법

iostream의 cout을 이용한다.

이때 백슬래시는 \\ 를 입력해야 출력되며,

큰따옴표는 \" 를 입력해야 출력된다. 

cout<<"\\"; // \ 출력
cout<<"\""; // " 출력

전체코드 (C++14)

#include <iostream>

using namespace std;

int main() {
	cout << "|\\_/|" << endl;
	cout << "|q p|   /}" << endl;
	cout << "( 0 )\"\"\"\\" << endl;
	cout << "|\"^\"`    |" << endl;
	cout << "||_/=\\\\__|" << endl;
}