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