Solution/Visual Basic
[BAEKJOON ONLINE JUDGE] 14337번 : Helicopter
뺚
2024. 5. 27. 14:00
시간 제한 : 1 초
메모리 제한 : 512 MB
문제
Write a program that displays the helicopter as seen below.
출력
Displays the helicopter, with no extra blank spaces. In particular, a line must not end with a blank space.
Module Main
Sub Main()
Console.WriteLine(" ===================")
Console.WriteLine(" ____||___")
Console.WriteLine("\ / / []\")
Console.WriteLine(" X======= \__")
Console.WriteLine("/ \ \____________|")
Console.WriteLine(" || ||")
Console.WriteLine(" \-----------/")
End Sub
end Module