PHP 中的数字加/除
我正在开发一个 Facebook 应用程序,需要能够计算三个数字的平均值。但是,它总是返回 0 作为答案。这是我的代码:
$y = 100;
$n = 250;
$m = 300;
$number = ($y + $n + $m / 3);
echo 'Index: '.$number;
它总是显示 Index: 0
有什么想法吗?
I am working on a Facebook App that needs to be able to average three numbers. But, it always return 0 as the answer. Here is my code:
$y = 100;
$n = 250;
$m = 300;
$number = ($y + $n + $m / 3);
echo 'Index: '.$number;
It always displays Index: 0
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
另外 - 你在前 3 行末尾错过了
;
Also - you missed
;
in the end of the first 3 lines你的括号分组错误。你应该这样做:
Your parentheses are grouped wrongly. You should be doing:
两个问题:
您在这些行的末尾缺少
;
:并且
/
的优先级高于+
因此您需要执行以下操作:Two problems:
You are missing
;
at the end of these lines:And to
/
has higher precedence than+
so you need to do: