Android examples for java.lang:Math Convert
convert Foot To Millimeter
//package com.java2s; public class Main { public static float convertFootToMillimeter(float Foot) { return (float) (Foot * 304.8); }//w ww. ja va 2 s . c o m }