convert Square Mile To Square KM - Android java.lang

Android examples for java.lang:Math Convert

Description

convert Square Mile To Square KM

Demo Code


//package com.java2s;

public class Main {
    public static float convertSquare_MileToSquareKM(float Square_Mile) {
        return (float) (Square_Mile * 2.58999);
    }/*  ww  w .  j a v a  2  s  .c o  m*/
}

Related Tutorials