728x90

https://www.acmicpc.net/problem/5337

 

5337번: 웰컴

문제 Welcome을 예제 출력처럼 출력하는 프로그램을 작성하시오. 출력 Welcome을 아래 예제 출력처럼 출력한다. 예제 입력 1 복사 예제 출력 1 복사 . . . | | _ | _. _ ._ _ _ |/\|(/.|(_.(_)[ | )(/....

www.acmicpc.net

#include <iostream>
using namespace std;


int main() {
	cout << ".  .   ." << endl;
	cout << "|  | _ | _. _ ._ _  _" << endl;
	cout << "|/\\\|(/.|(_.(_)[ | )(/.";
	return 0;
}
728x90

+ Recent posts