Advertisement
Guest User

Untitled

a guest
Mar 21st, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. namespace exerciseSecondL{
  2. class exerciseSecondL{
  3. static void Main(){
  4. double a = double.Parse(System.Console.ReadLine());
  5. double h = double.Parse(System.Console.ReadLine());
  6. double areaTriangle = a*h/2;
  7.  
  8. System.Console.WriteLine($"Triangle area = {System.Math.Round(areaTriangle,2)}");
  9. }
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement