[백준] 10171번 고양이

nevermind·2024년 5월 9일
0

알고리즘

목록 보기
10/11
post-custom-banner

문제

아래 예제와 같이 고양이를 출력하시오.

출력

고양이를 출력한다.

예제 출력

\ /\
) ( ')
( / )
(__)|


나의 풀이

굉장히 쉬운 문제군! 생각했다만...
역슬래시는 두번을 써야했었다

const fs = require('fs');
const input = fs.readFileSync('/dev/stdin').toString();
console.log("\ /\");
console.log(" ) ( ')");
console.log("( / )");
console.log(" \(__)|");

profile
winwin

0개의 댓글