Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    public static double distance(double currentLatitude, double currentLongitude, double compareLatitude,
            double compareLongitude) {
        return Math.sqrt(
                Math.pow(currentLatitude - compareLatitude, 2) + Math.pow(currentLongitude - compareLongitude, 2));
    }
}