脂肪量 @param: weight(kg) @param: bfr(体脂率 body fat rate) @result: (kg)
static double getFatMass(double weight, double bfr) { return weight * bfr / 100; }