본문 바로가기
알고리즘/백준

[BAEKJOON]2377 Pottery - FreeBASIC

by 응애~ 개발자 2022. 12. 24.
728x90
반응형

문제 요약

 

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

Code

PRINT " _________"
PRINT " \_     _/"
PRINT "   \   /"
PRINT "    | |"
PRINT "   /   \"
PRINT "  /     \"
PRINT " |       |"
PRINT "/---------\"
PRINT "| \-/ \-/ |"
PRINT "\---------/"
PRINT " \_______/"
728x90
반응형