Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace CenterPoint
- {
- 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());
- ClosestToTheCenter(x1, x2, y1, y2);
- }
- static void ClosestToTheCenter(double x1, double x2, double y1, double y2)
- {
- if (Math.Abs(x1 * x1 + y1 * y1) < Math.Abs(x2 * x2 + y2 * y2))
- {
- Console.WriteLine($"({x1}, {y1})");
- }
- else
- {
- Console.WriteLine($"({x2}, {y2})");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement