Android examples for java.lang:Math Convert
convert Millimeter To Nautical Mile
//package com.java2s; public class Main { public static float convertMillimeterToNauticalMile(float Millimeter) { return (float) (Millimeter * 5.3996 * .00000001); }// w ww .j a v a2s . c om }