为什么模数运算符在 Perl 和 PHP 中的行为不同?

发布于 2024-10-20 00:28:48 字数 280 浏览 2 评论 0原文

我有这个 PHP 函数,它不适用于负数:

function isOdd($num) 
{
   return $num % 2 == 1; 
}

但它适用于正数。

我有这个 Perl 例程,它执行完全相同的操作并且适用于负数

sub isOdd()
{
  my ($num) = @_;
  return $num % 2 == 1;
}

我在翻译函数时犯了任何错误吗?或者是 PHP 错误?

I've this PHP function which does not work for negative numbers:

function isOdd($num) 
{
   return $num % 2 == 1; 
}

but it works for positive number.

I have this Perl routine which does the exact same thing and works for negative number also

sub isOdd()
{
  my ($num) = @_;
  return $num % 2 == 1;
}

Did I make any mistake in translating the function ? or is it PHP bug ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

苍暮颜 2024-10-27 00:28:48

在 PHP 中,x % y 结果的符号是被除数的符号,即 x
在 Perl 中,它是除数的符号,即y

因此,在 PHP 中,$num % 2 的结果可以是 1-10

因此,修复您的函数,将结果与 0 进行比较:

function isOdd($num) { 
  return $num % 2 != 0; 
}

In PHP the sign of the result of x % y is the sign of dividend which is x but
in Perl it is the sign of the divisor which is y.

So in PHP the result of $num % 2 can be be either 1, -1 or 0.

So fix your function compare the result with 0:

function isOdd($num) { 
  return $num % 2 != 0; 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文