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 |
Tags
- 리눅스
- Linux
- C++
- 오늘도 우라라 공략
- mariaDB
- ros
- topic
- 등차수열
- ubuntu
- 오늘도 우라라
- JungOl
- 반복문
- 기초
- C언어
- 프로그래밍
- Subscribe
- 마리아 DB
- 환경설정
- install opencv-4.4.0 on ubuntu 22.04
- 토픽
- mysql
- 오늘도 우라라 펫 공략
- while
- MSG
- LeetCode
- publish
- 데이터 베이스
- 그랑사가
- 오늘도 우라라 펫
- 우분투
Archives
- Today
- Total
하루의 쉼터
[BAEKJOON] 10172. 개 본문
반응형
| 10171. 고양이
Category :
입출력과 사칙연산
Title :
10172. 개
Question :
아래 예제와 같이 개를 출력하시오.
|\_/|
|q p| /}
( 0 )"""\
|"^"` |
||_/=\\__|
Condition :
Input
없음
Output
개를 출력한다.
Code :
#include<iostream>
int main() {
std::cout << "|\\_/|"<<std::endl;
std::cout << "|q p| /}" << std::endl;
std::cout << "( 0 )\"\"\"\\" << std::endl;
std::cout << "|\"^\"` |" << std::endl;
std::cout << "||_/=\\\\__|" << std::endl;
return 0;
}
* Point :
특수문자 출력 시 유의하여 출력한다.
BAEKJOON :
https://www.acmicpc.net/problem/10172
GitHub :
https://github.com/Anchangun/BaekJoon/tree/main/Question/Print/10172.%20%EA%B0%9C
반응형
'Coding Test > BaekJoon' 카테고리의 다른 글
[BAEKJOON] 1001. A-B - C++ (0) | 2022.01.07 |
---|---|
[BAEKJOON] 1000. A+B - C++ (0) | 2022.01.06 |
[BAEKJOON] 5622. 다이얼 (0) | 2021.11.29 |
[BAEKJOON] 10171. 고양이 (0) | 2021.11.27 |
[BAEKJOON] 10718. We love kriii (0) | 2021.11.26 |
Comments