Android examples for java.lang:Math Convert
convert Centimeter To Mile
//package com.java2s; public class Main { public static float convertCentimeterToMile(float centimeter) { return (float) (centimeter * 6.21371 * .0000001); }/*from ww w . ja v a2 s .c o m*/ }