Advertisement
vencinachev

Circles

Feb 2nd, 2021
816
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.08 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 SoftuniSv
  8. {
  9.     class Program
  10.     {
  11.         static double Distance(Point p1, Point p2)
  12.         {
  13.             double d = Math.Sqrt((p1.x - p2.x)* (p1.x - p2.x) + (p1.y - p2.y)* (p1.y - p2.y));
  14.             return d;
  15.         }
  16.         static bool IsInCircle(Circle c, Point p)
  17.         {
  18.             double d = Distance(p, c.center);
  19.             if (d <= c.radius)
  20.             {
  21.                 return true;
  22.             }
  23.             return false;
  24.         }
  25.  
  26.         static bool IsIntersect(Circle c1, Circle c2)
  27.         {
  28.  
  29.         }
  30.         static void Main(string[] args)
  31.         {
  32.             Point c = new Point();
  33.             c.x = 10;
  34.             c.y = 20;
  35.  
  36.             Circle c1 = new Circle();
  37.             c1.center = c;
  38.             c1.radius = 50;
  39.  
  40.             Point p2 = new Point();
  41.             p2.x = 10;
  42.             p2.y = 13;
  43.  
  44.             Console.WriteLine(IsInCircle(c1, p2));
  45.  
  46.             c1.Print();
  47.         }
  48.     }
  49. }
  50.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement