Advertisement
vencinachev

PointMain

Jan 12th, 2021
916
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.59 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace SoftUniiii
  8. {
  9.     class Program
  10.     {
  11.         static double Dist(Point pa, Point pb)
  12.         {
  13.             double dist = Math.Sqrt(Math.Pow(pa.X - pb.X, 2) + Math.Pow(pa.Y - pb.Y, 2));
  14.             return dist;
  15.         }
  16.         static void Main(string[] args)
  17.         {
  18.             Console.Write("Enter n: ");
  19.             int n = int.Parse(Console.ReadLine());
  20.             Random rand = new Random();
  21.  
  22.             Point[] points = new Point[n];
  23.  
  24.             for (int i = 0; i < n; i++)
  25.             {
  26.                 Console.Write("x: ");
  27.                 int x = int.Parse(Console.ReadLine());
  28.                 Console.Write("y: ");
  29.                 int y = int.Parse(Console.ReadLine());
  30.                 points[i] = new Point(x, y);
  31.             }
  32.  
  33.      
  34.             Console.WriteLine("Random distance: " + Dist(points[rand.Next(n)], points[rand.Next(n)]));
  35.  
  36.  
  37.             double minDist = double.MaxValue;
  38.  
  39.             for (int i = 0; i < n; i++)
  40.             {
  41.                 for (int j = 0; j < n; j++)
  42.                 {
  43.                     if (i == j)
  44.                     {
  45.                         continue;
  46.                     }
  47.                     double currentDist = Dist(points[i], points[j]);
  48.                     if (currentDist < minDist)
  49.                     {
  50.                         minDist = currentDist;
  51.                     }
  52.                 }
  53.             }
  54.             Console.WriteLine($"Min distance = {minDist}");
  55.         }
  56.     }
  57. }
  58.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement