The given method TriangleArea computes the area of a triangle with a specified base and height according to the formla ½ * base * height The method Main reads the base and height from user and passes them to the method TriangleArea to compute the area. This method returns result to the method Main . Fill in the blanks to complete your program.
Example
Enter base: 14
Enter height: 10
The area of the triangle is 70.00.