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