Android examples for java.lang:Math Convert
Converts centimeters to inches.
//package com.java2s; public class Main { /**//from ww w.j a va2s . c om * Converts centi-meters to inches. * * @param cm to be converted. * @return value converted to inches. */ public static double cmToInches(double cm) { return cm / 2.54; } }