Android examples for java.lang:Math Convert
convert Square Foot To Hectare
//package com.java2s; public class Main { public static float convertSquare_FootToHectare(float Square_Foot) { return (float) (Square_Foot * 9.2903e-6); }/*from w ww . ja v a 2s . co m*/ }