寻找将“食物价值”和“含酒精和糖醇的食物”的Weight Watcher PointsPlus公式编码为Ruby和/或PHP的正确方法。
以下是公式的链接:http://en.wikipedia.org/wiki/Weight_Watchers#Formulas
提前感谢您的帮助!
更新
根据以下@mjayt的帮助,我有以下代码。我的目标是学习如何通过代码正确思考,组织和解决公式。我相信帮助正确解决这两个公式将有很大帮助。再次感谢。
$protein = 8;
$carbs = 30;
$fat = 12;
$fiber = 8;
$pointsplus = round((($protein * 16) + ($carbs * 19) + ($fat * 45) - ($fiber * 14)) / 175, 0);
echo $pointsplus;
答案 0 :(得分:1)
好的,所以我很无聊......这是第一个。这应该让你去
$protein = 8;
$carbs = 30;
$fat = 12;
$fiber = 8;
$pointsplus = round((($protein * 16) + ($carbs * 19) + ($fat * 45) - ($fiber * 14)) / 175, 0);
echo $pointsplus;