Android examples for java.lang:Math Convert
convert Foot To centiMeter
//package com.java2s; public class Main { public static float convertFootTocentiMeter(float Foot) { return (float) (Foot * 30.48); }/*from w ww . j ava 2 s. com*/ }