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