Question: Please use Java 3 Quick Lab 2b Closest Pair 1. In Eclipse create a java project called qlab2b 2. For this question, consider writing down

Please use Java
3 Quick Lab 2b Closest Pair 1. In Eclipse create a java project called qlab2b 2. For this question, consider writing down a plan for your program on paper before you start coding. This will help you clarify what you need to do. 3. In your Program class's main method, you must read in a set of coordinates, with a coordinate appearing on each line. The input is terminated by a 4. Each coordinate has an x and a y value. You must store these coordinates so that you can use them later 5. Next, you must write a method that calculates the distance between two coordinates, using the Euclidean distance ((r2-(2 ) 6. Your program must then output the distance between the closest pair of points (ie. the pair of points that has the smallest Euclidean distance) 3.1 Example Input 3,111 3, 9 15, 39 130,78 90,91 3.2 Example Output 2.23606797749979
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
