Spocoman

01. Trapeziod Area

Nov 15th, 2021 (edited)
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.73 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Trapezoid
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             double b1 = double.Parse(Console.ReadLine());
  10.             double b2 = double.Parse(Console.ReadLine());
  11.             double h = double.Parse(Console.ReadLine());
  12.             double result = (b1 + b2) * h / 2;
  13.             Console.WriteLine($"{result:f2}");  
  14.         }
  15.     }
  16. }
  17.  
  18.  
  19. ИЛИ ТАРИКАТСКАТА:)
  20.  
  21. using System;
  22.  
  23. namespace Trapezoid
  24. {
  25.     class Program
  26.     {
  27.         static void Main(string[] args)
  28.         {  
  29.             Console.WriteLine($"{(double.Parse(Console.ReadLine()) + double.Parse(Console.ReadLine())) * double.Parse(Console.ReadLine()) / 2:f2}");  
  30.         }
  31.     }
  32. }
Add Comment
Please, Sign In to add comment