This commit is contained in:
nik
2025-09-30 14:26:54 +03:00
parent 8bd93df2ae
commit 8164e04835
633 changed files with 8 additions and 8 deletions

View File

@@ -0,0 +1,18 @@
using System;
public class Program
{
public static void Main(string[] args)
{
Point p1 = new Point();
p1.Show();
Point p2 = new Point(12, 13);
p2.Show();
Line line = new Line(p1, p2);
line.Show();
double dtr = line.DlinL();
Console.WriteLine("Длина отрезка " + dtr);
}
}