[c++ 백준] (5337번) 웰컴

728x90

문제

Welcome을 예제 출력처럼 출력하는 프로그램을 작성하시오.

출력

Welcome을 아래 예제 출력처럼 출력한다.


코드
#include<iostream>

#define endl "\n"
using namespace std;

void Answer()
{
	cout << ".  .   .\n"
		<< "|  | _ | _. _ ._ _  _\n"
		<< "|/\\|(/.|(_.(_)[ | )(/.";
}

int main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(NULL); cout.tie(NULL);
	Answer();
	return 0;
}

728x90