Android examples for java.lang:Math Convert
convert Foot To Nautical Mile
//package com.java2s; public class Main { public static float convertFootToNauticalMile(float Foot) { return (float) (Foot * 0.000164579); }//from ww w .j av a2 s. c om }