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

[BAEKJOON]2377 Pottery - Visual Basic

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

문제 요약

 

14337번: Helicopter

Displays the helicopter, with no extra blank spaces. In particular, a line must not end with a blank space.

www.acmicpc.net

Code

Imports System

Module Program
    Sub Main(args As String())
        Console.WriteLine("      ===================
          ____||___
\ /      /       []\
 X=======           \__
/ \      \____________|
            ||  ||
         \-----------/")

    End Sub
End Module
728x90
반응형