Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Center_Point
- {
- class Program
- {
- static void Main(string[] args)
- {
- double x1 = double.Parse(Console.ReadLine());
- double y1 = double.Parse(Console.ReadLine());
- double x2 = double.Parse(Console.ReadLine());
- double y2 = double.Parse(Console.ReadLine());
- double distanceFirstPoint = Distance(x1, y1);
- double distanceSecondPoint = Distance(x2, y2);
- if (distanceFirstPoint < distanceSecondPoint)
- {
- Console.WriteLine("({0}, {1})",x1,y1);
- }
- else
- {
- Console.WriteLine("({0}, {1})",x2,y2);
- }
- Console.WriteLine();
- }
- public static double Distance(double x, double y)
- {
- var distance = Math.Sqrt(Math.Pow(x, 2) + Math.Pow(y, 2));
- return distance;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement