알고리즘
[C++] 백준 5339번 콜센터
J3SUNG
2019. 9. 22. 19:33
728x90
출력 문제입니다.
오른쪽의 그림을 출력하면 됩니다.
#include <iostream>
using namespace std;
int main()
{
cout << " /~\\" << endl;
cout << " ( oo|" << endl;
cout << " _\\=/_" << endl;
cout << " / _ \\" << endl;
cout << " //|/.\\|\\\\ " << endl;
cout << " || \\ / ||" << endl;
cout << "============" << endl;
cout << "| |" << endl;
cout << "| |" << endl;
cout << "| |" << endl;
return 0;
}