문제 출처:
https://www.acmicpc.net/problem/10171
print를 할 수 있느냐를 묻는 문제입니다.
다음과 같이 구현했습니다.
#include <iostream>
using namespace std ;
void cat() ;
int main(){
cat() ;
return 0 ;
}
void cat(){
cout << "\\ /\\" << endl ;
cout << " ) ( ')" << endl ;
cout << "( / )" << endl ;
cout << " \\(__)|" << endl ;
return ;
}
훈수, 조언 언제나 환영입니다.