Описание
Бъдни вечер наближава, така че дори и програмистите трябва да се подготвят.
В духа на празника твоята задача е да напишеш програма, която отпечатва елха в конзолата.
Форматът на дървото е показан в примера по-долу.
Пример

Решение
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Module FirTree | |
Sub main() | |
Dim height As Integer = Integer.Parse(Console.ReadLine()) | |
Dim width As Integer = 1 | |
For i As Integer = 2 To height - 1 | |
width += 2 | |
Next i | |
Dim asterisk As Integer = -1 | |
Dim point As Integer = 0 | |
For i = 1 To height | |
asterisk += 2 | |
point = If(i < height, (width - asterisk) * 0.5, (width - 1) * 0.5) | |
For j = 1 To width | |
If j <= point Or j > width - point Then | |
Console.Write(".") | |
Else | |
Console.Write("*") | |
End If | |
Next j | |
Console.WriteLine() | |
Next i | |
Console.ReadLine() | |
End Sub | |
End Module |