반응형

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

 

풀이방법

iostream의 cout을 이용한다.

이때 백슬래시는 연속으로 두번 써야 한번 출력된다.

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

기타 출력 참조 : https://stackoverflow.com/questions/1650981/how-do-you-output-the-symbol-using-cout

 


전체코드 (C++14)

#include <iostream>

using namespace std;

int main() {
	cout << "\\    /\\" << endl;
	cout << " )  ( ')" << endl;
	cout << "(  /  )" << endl;
	cout << " \\(__)|" << endl;

}