Найти периметр и площадь треугольника, заданного координатами вершин - C#

Узнай цену своей работы

Формулировка задачи:

Заданы координаты трех вершин треугольника (x1, y1), (x2, y2), (x3, y3). Найти его периметр и площадь.

Решение задачи: «Найти периметр и площадь треугольника, заданного координатами вершин»

textual
Листинг программы
  1.  class TriangleTask
  2.     {
  3.        public struct Point
  4.         {
  5.            public int x, y;
  6.            public Point( int xx, int yy)
  7.            {
  8.                x = xx;
  9.                y = yy;
  10.  
  11.            }
  12.            public  Point input() {
  13.                Console.Write("Input X: ");
  14.                x = int.Parse(Console.ReadLine());
  15.                Console.Write("Input Y: ");
  16.                y = int.Parse(Console.ReadLine());
  17.  
  18.                return new Point(x, y);
  19.            }
  20.  
  21.         }
  22.         public static double[] CalcDistance(Point a, Point b, Point c) {
  23.             return new double[] { Math.Sqrt(Math.Pow(a.x-b.x,2) + Math.Pow(a.y-b.y,2)),
  24.             Math.Sqrt(Math.Pow(a.x-c.x,2) + Math.Pow(a.y-c.y,2)),
  25.             Math.Sqrt(Math.Pow(c.x-b.x,2) + Math.Pow(c.y-b.y,2)),
  26.             };
  27.         }
  28.  
  29.         static void Main(string[] args)
  30.         {
  31.             Console.WriteLine("First Point.");
  32.             Point A = new Point().input();
  33.             Console.WriteLine("Second Point.");
  34.  
  35.             Point B = new Point().input();
  36.  
  37.             Console.WriteLine("Third Point.");
  38.             Point C = new Point().input();
  39.  
  40.  
  41.             double[] distances = CalcDistance(A, B, C);
  42.  
  43.             double perimeter = distances.Sum();
  44.             Console.WriteLine("Perimeter is: {0:F2}" , perimeter);
  45.  
  46.             double area = Math.Sqrt(perimeter * (perimeter - distances[0]) * (perimeter - distances[1]) * (perimeter - distances[2]));
  47.             Console.WriteLine("Area is: {0:F2}", area);
  48.  
  49.             Console.ReadKey();
  50.         }
  51.     }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

5   голосов , оценка 4.4 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы