Problem Solving/백준

[백준-10171] 고양이 출력하기

<문제>


<Code>

#include <iostream>
using namespace std;

int main() {
	cout << "\\    /\\" << endl;
	cout << " )  ( ')" << endl;
	cout << "(  /  )" << endl;
	cout << " \\(__)|" << endl;

	return 0;
}


<Comment>

이게 고양이야????????????


www.acmicpc.net/problem/10171

 

'Problem Solving > 백준' 카테고리의 다른 글

[백준-15596] 정수 N개의 합  (0) 2021.02.05
[백준-2562] 최댓값  (0) 2021.02.04
[백준-2884] 알람 시계  (0) 2021.02.03
[백준-10430] 나머지  (0) 2021.02.03
[백준-1000] A+B  (0) 2021.01.27