Center Point - Methods. Debugging and Troubleshooting Code - Exercises
Здравейте,
Опитвам се да реша следната задача:
8.Center Point
You are given the coordinates of two points on a Cartesian coordinate system - X1, Y1, X2 and Y2. Create a method that prints the point that is closest to the center of the coordinate system (0, 0) in the format (X, Y). If the points are on a same distance from the center, print only the first one.
Examples
Input |
Output |
2 4 -1 2 |
(-1, 2) |
Ето решението ми, но ми дава 80 от 100 точки в judge :( И тъй като не мога да видя входните данни и грешния отговор, вече ми трябва помощ.
https://pastebin.com/7dDTC4LP
Предварително благодаря!