Witaj :)
Poniżej daję potrzebny fragment kodu:
float a, h, pole = 0;
Console.WriteLine("Podaj bok a: ");
a = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Podaj wysokosc: ");
h = Convert.ToInt32(Console.ReadLine());
pole = (a*h)/2;
Console.WriteLine("Pole tego trojkata wynosi: " + pole);