Question: JAVA Write a program to find two points that are nearest to each other. For example, points (1, 1) and (2, 0.5) are closest to
JAVA
Write a program to find two points that are nearest to each other. For example, points (1, 1) and (2, 0.5) are closest to each other. Your program asks the user to enter the number of points and each position of points, and then find out the closest pair of points. x o -1 3 1 -1 - 1 (-1, 3) (3, 3) 2 1 1 0.5 (4, 2) (1, 1) (2, 0.5) NN 4 -1 5 3 3 (4, -0.5) (-1, -1) (2, 1) 6 2 4 4 7 -0.5 Sample Run: - CK C:\Windows\system32\cmd.exe Enter the number of points: 8 Enter 8 points-1 3 -1 -1 1 1 2 0.5 2 -1 3 3 4 2 4 -0.5 The closest two points are (1.0, 1.0) and (2.0, 0.5) Press any key to continue
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
