Android examples for java.lang:Math Convert
convert Foot To Kilometer
//package com.java2s; public class Main { public static float convertFootToKilometer(float Foot) { return (float) (Foot * 0.0003048); }/* w w w . j a v a 2 s. c o m*/ }