大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
MI计算公式为:
创新互联建站网站建设公司,提供成都网站设计、网站建设,网页设计,建网站,PHP网站建设等专业做网站服务;可快速的进行网站开发网页制作和功能扩展;专业做搜索引擎喜爱的网站,是专业的做网站团队,希望更多企业前来合作!
public double getBMI(double weight,double height){
return weight/(height*height);
}
public static void main(String[] arrs){
Scanner scanner=new Scanner(System.in);
System.out.println("请输入体重");
double weight=scanner.nextDouble();
System.out.println("请输入身高");
double height=scanner.nextDouble();
getBMI(weight,height);
}
相信很多人都有这样一种感觉:为什么相同身高相同体重的两个人,有人看起来瘦,有人看起来胖,或者是减肥的时候,明明体重没有下降,甚至还上升了,但是看起来却瘦下来了。
其实,这其中就是体脂率在起作用。有人过分追求减肥时的体重快速下降,但其实如果体脂率没小,只是体重下去了,也是虚的。
只有当体脂率变小,腰围等才会变小,视觉上才会看起来“瘦”,这体脂率,指的就是脂肪的重要占总体重的比例,当体脂率低,意味着身体的脂肪含量少,即使是相同体重的人,看起来也会比较瘦,这就是体脂率的意义。
如果按照概念来看,体脂率的计算公式就是:体脂率=(脂肪重量 ÷ 体重)×100%,通用的体脂率计算公式为:体脂率 =1.2×BMI+0.23× 年龄-5.4-10.8×性别(男为1,女为0),其中BM指的是体重指数,用体重除以身高的平方即可得到。
因此,按照公式就可以计算出自己的体脂率了,如此一来,就可以知道自己是“胖”还是“瘦”。有人就会提出疑问,是不是体脂率越低越好呢?当然不是。
import java.util.Scanner;
public class Tt {
/** 计算公式:
* 男:[66 + 1.38 x 体重(kg) + 5 x 高度(cm) - 6.8 x 年龄] x 活动量
* 女:[65.5 + 9.6 x 体重(kg) + l.9 x 高度(cm) - 4.7 x 年龄] x 活动量
*/
private static double actRadio = 1.2;//活动量
public static void main (String[] args){
System.out.println("计算人体每天摄入热量");
System.out.println("请输入性别/体重(KG)/身高(CM)/年龄,例如:男/60/170/25");
Scanner sca = new Scanner(System.in);
String input = sca.nextLine();
while(!"exit".equalsIgnoreCase(input)){
double heat = calcHeat(input);
if(heat==-1){
System.out.println("输入格式不正确,请重新输入!");
Scanner sc = new Scanner(System.in);
input = sc.nextLine();
continue;
}else{
System.out.println("所需热量为:"+heat+"(Kcal)");
System.out.println("请继续输入:");
Scanner sc = new Scanner(System.in);
input = sc.nextLine();
}
}
}
private static double calcHeat(String input){
double heat = -1;
try {
String[] ss = input.split("/");
if(ss[0].equals("男")){
heat = (66+1.38*Integer.parseInt(ss[1])+ 5*Integer.parseInt(ss[2])+6.8*Integer.parseInt(ss[3]))*actRadio;
}else if(ss[0].equals("女")){
heat = (65.5+9.6*Integer.parseInt(ss[1])+ 1.9*Integer.parseInt(ss[2])+4.7*Integer.parseInt(ss[3]))*actRadio;
}else {
throw new Exception();
}
}catch (Exception e){
return -1;
}
return heat;
}
}
BMI:身体质量指数,其计算公式为:(BMI)=体重(kg)÷身高^2(m)
所以可以通过如下代码计算:
/**
* 通过给出体重和身高计算身体质量指数
* @param weight 体重(单位是千克)
* @param height 身高(单位是米)
*/
public float calBMI(float weight,float height)
{
return weight / (height * height);
}