public static void Main()
Console.WriteLine("<---- Triangle Area Calculator ---->\n");
Console.WriteLine("This program will calculate the area of a triangle \nWe just need the base (b) and height (h)!\n");
Console.WriteLine("What is the base?");
Console.WriteLine("What is the height?");
dB = Convert.ToDouble(sB);
dH = Convert.ToDouble(sH);
catch(FormatException formatExceptionParameter)
Console.WriteLine("You must enter doubles.");
Console.WriteLine("The area of the triangle is " + dA +".");