Android examples for java.lang:Math
calculate BMI for your body
/*// w w w . j av a 2 s. c om * Copyright (C) 2015, Jhuster, All Rights Reserved * Author: Jhuster(lujun.hust@gmail.com) * * https://github.com/Jhuster/EWeightScale * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. */ //package com.java2s; import java.text.DecimalFormat; public class Main { public static double calculateBMI(double weight, double height) { DecimalFormat format = new DecimalFormat("0.00"); double result = weight / (height * height) * 10000; return Double.valueOf(format.format(result).toString()); } }