Problem Solving/BOJ

[BOJ] 10171 : 고양이

shyram 2018. 12. 30. 19:20

간단한 출력문제이다.


Escape Sequence를 주의해서 출력해야 한다.



1
2
3
4
5
6
7
8
#include <bits/stdc++.h>
using namespace std;
 
int main(void) {
    ios::sync_with_stdio(0);
    cin.tie(NULL);
    cout << "\\    /\\\n" << " )  ( ')\n" << "(\  /  )\n" <<" \\(__)|";
}
cs