Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
private static float distance(double x1, double y1, double x2, double y2) {
return (float) Math.sqrt(Math.pow(x2 - x1, 2) + Math.pow(y2 - y1, 2));
}
}