Android examples for java.lang:Math Convert
convert Square Foot To Acre
//package com.java2s; public class Main { public static float convertSquare_FootToAcre(float Square_Foot) { return (float) (Square_Foot * 2.2957e-5); }/*from ww w .ja va 2 s.c o m*/ }