Here you can find the source of KmToMiles(int distance)
public static int KmToMiles(int distance)
//package com.java2s; public class Main { public static int KmToMiles(int distance) { double dist = distance * 0.621; return (int) dist; }//from w w w . jav a 2 s . c o m }