Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- C언어
- 환경설정
- mariaDB
- 우분투
- 토픽
- 기초
- ubuntu
- publish
- C++
- MSG
- 그랑사가
- LeetCode
- 리눅스
- 오늘도 우라라 펫 공략
- Subscribe
- while
- 오늘도 우라라 공략
- 마리아 DB
- Linux
- install opencv-4.4.0 on ubuntu 22.04
- 등차수열
- 오늘도 우라라
- 프로그래밍
- ros
- 오늘도 우라라 펫
- topic
- 데이터 베이스
- JungOl
- 반복문
- mysql
Archives
- Today
- Total
하루의 쉼터
[BAEKJOON] 10171. 고양이 본문
반응형
| 10171. 고양이
Category :
입출력과 사칙연산
Title :
10171. 고양이
Question :
아래 예제와 같이 고양이를 출력하시오.
\ /\
) ( ')
( / )
\(__)|
Condition :
Input
없음
Output
고양이를 출력한다.
Code :
#include<iostream>
int main(){
std::cout<<"\\ /\\"<<std::endl;
std::cout<<" ) ( ')"<<std::endl;
std::cout<<"( / )"<<std::endl;
std::cout<<" \\(__)|"<<std::endl;
return 0;
}
* Point :
특수문자 출력 시 유의하여 출력한다.
Baekjoon :
https://www.acmicpc.net/problem/10171
Github :
https://github.com/Anchangun/BaekJoon/tree/main/Question/Print/10171.%20%EA%B3%A0%EC%96%91%EC%9D%B4
반응형
'Coding Test > BaekJoon' 카테고리의 다른 글
[BAEKJOON] 10172. 개 (0) | 2022.01.06 |
---|---|
[BAEKJOON] 5622. 다이얼 (0) | 2021.11.29 |
[BAEKJOON] 10718. We love kriii (0) | 2021.11.26 |
[BAEKJOON] 2557. Hello World (0) | 2021.11.25 |
[BAEKJOON] 1065. 한수 - Feat. C++ (0) | 2021.10.30 |
Comments