Android examples for java.lang:Math Convert
convert Square Mile To Acre
//package com.java2s; public class Main { public static float convertSquare_MileToAcre(float Square_Mile) { return (float) (Square_Mile * 640); }//from w ww.j av a 2 s . c o m }