본문 바로가기
BaekJoon/Bronze

[BOJ/FreeBASIC] 백준 2377 : Pottery (FreeBASIC)

by HoonSikE 2023. 7. 8.
반응형
SMALL
문제 정보
  문제명   - Pottery
  난이도   - 브론즈 V
문제 번호 - 2377번

문제 링크

https://www.acmicpc.net/problem/2377

 

2377번: Pottery

3D printing is becoming more and more prominent in today’s society. Unfortunately, you don’t currently have access to a 3D printer. Instead, you can just print an item with your knowledge of coding! Print a clay pot.

www.acmicpc.net


문제
3D printing is becoming more and more prominent in today’s society. Unfortunately, you don’t currently have access to a 3D printer. Instead, you can just print an item with your knowledge of coding! Print a clay pot.

출력
Output the pot exactly as shown in the example output. There are no blank lines before or after the output, and there are no trailing spaces on any of the lines.

예제 입력/출력
예제 입력 예제 출력
 
 _________
 \_     _/
   \   /
    | |
   /   \
  /     \
 |       |
/---------\
| \-/ \-/ |
\---------/
 \_______/

알고리즘 분류
● 구현

소스코드
PRINT " _________"
PRINT " \_     _/"
PRINT "   \   /"
PRINT "    | |"
PRINT "   /   \"
PRINT "  /     \"
PRINT " |       |"
PRINT "/---------\"
PRINT "| \-/ \-/ |"
PRINT "\---------/"
PRINT " \_______/"

 


BaekJoon List
 

BaekJoon List

BOJ Start!! ● [BOJ] 백준 회원가입, 시작하는 법 ● [BOJ] 등급(티어) 및 Solved.AC 적용 ● [BOJ/JAVA] 백준 소스코드 제출 시 유의사항(자바) Bronze ● Bronze V  - ● Bronze IV  - ● Bronze III  -..

han-hoon.tistory.com


  

기회는 준비된 자에게 찾아온다.

 


 

반응형
LIST

댓글