반응형
백준 온라인 저지의 10171번 문제입니다.
문제 분류는 [구현]으로 분류되어 있습니다.
문제 링크 : www.acmicpc.net/problem/10171
풀이 :
- 설명이 많이 필요 없는 문제입니다.
- 다만 출력 시, \ 를 출력하는 방법, " 를 출력하는 방법 등 특수한 경우를 고민해 볼 필요가 있습니다.
#include <iostream>
using namespace std;
int main(void){
cout << "\\ /\\" << endl;
cout << " ) ( ')" << endl;
cout << "( / )" << endl;
cout << " \\(__)|" << endl;
}
반응형
'Dev > [Algorithm]' 카테고리의 다른 글
[Algorithm] [C++] 백준 1436번 영화감독 숌 (0) | 2020.11.04 |
---|---|
[Algorithm] [C++] 백준 15649번 N과M(1) (0) | 2020.11.04 |
[Algorithm] [C++] 백준 2798번 블랙잭 (0) | 2020.10.22 |
[Algorithm] [C++] 백준 10989번 수 정렬하기 3 (0) | 2020.07.14 |
[Algorithm] [C++] 부채꼴 범위 안의 적 판별하기 (0) | 2020.05.28 |