去脂体重 @param: weight(kg) @param: bfr(体脂率 body fat rate) @result: (kg)
static double getLeanBodyMass(double weight, double bfr) { double fatMass = getFatMass(weight, bfr); return weight - fatMass; }