Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Triangle
- {
- class Program
- {
- static void Main(string[] args)
- {
- double a = double.Parse(Console.ReadLine());
- double h = double.Parse(Console.ReadLine());
- double result = a * h / 2;
- Console.WriteLine($"{result:f2}");
- }
- }
- }
Add Comment
Please, Sign In to add comment