Android examples for java.lang:Math Convert
convert Foot To Mile
//package com.java2s; public class Main { public static float convertFootToMile(float Foot) { return (float) (Foot * 0.000189394); }//from w ww . j a v a2 s . c o m }