Java examples for java.lang:Math Convert
foot To Millimetre
//package com.java2s; public class Main { public static Double footToMillimetre(Double ft) { return (ft * 304.8); }/*from ww w. j ava2s . c om*/ }