728x90
문제
아래 예제와 같이 고양이를 출력하시오.
입력
없음.
출력
고양이를 출력한다.
예제 입력 1
없음
예제 출력 1
\ /\
) ( ')
( / )
\(__)|
CODE
// 1번 답
// console.log(`\\ /\\`);
// console.log(` ) ( ')` );
// console.log(`( / )`);
// console.log(` \\(__)|`);
// 2번 답
console.log('\\ /\\\n ) ( \')\n( / )\n \\(__)|');
// 3번 답
// console.log('\\ /\\\n',
// ') ( \')\n\
// ( / )\n',
// '\\(__)|\n');
Comment
위의 코드처럼 console.log를 한 번 OR 네 번 써서 출력할 수 있다.
백슬래시(\)를 출력할 때는 백슬래시를 두 번(\\) 써야 출력 할 수 있다.
개행을 하고 싶을 때는 '\n' 을 입력한다.
'ALGORITHM > 백준 With Node.js' 카테고리의 다른 글
[백준] 1001번 / A-B / Node.js (0) | 2021.04.19 |
---|---|
[백준] 1000번 / A+B / Node.js (0) | 2021.04.19 |
[백준] 10172번 / 개 / Node.js (0) | 2021.04.19 |
[백준] 10718번 / We love kriii / Node.js (0) | 2021.04.19 |
[백준] 2557번 / Hello World / Node.js (0) | 2021.04.18 |
댓글