为什么订单的总输出值不同?

发布于 2024-12-02 17:53:23 字数 1470 浏览 2 评论 0原文

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

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

发布评论

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

评论(1

泛滥成性 2024-12-09 17:53:23

当你使用时会发生什么:

echo ord('a')+ord('b')+ord('c');

这可能就是你在第二个中的意图:-)


换句话说,你似乎已经离开了最后部分的ord的表达。

事实上,通常获得 98 的唯一方法是:(

echo ('a')+ord('b')+('c')

仅在第二项上使用 ord),因此您可能需要再次检查。如果,正如您现在所表明的那样,您在每个术语上都使用 ord ,那么这对我来说效果很好。

它们都从 97 + 98 + 99 返回 294,即 ab的 ASCII 值>c

And what happens when you use:

echo ord('a')+ord('b')+ord('c');

which is probably what you intended in that second one :-)


In other words, you appear to have left the ord of the final part of the expression.

In fact, the only way you would normally get 98 would be with:

echo ('a')+ord('b')+('c')

(with ord only on the second term) so you may want to check again. If, as you seem to now indicate, you're using ord on each term, that works fine for me.

Both of them return 294 from 97 + 98 + 99, the ASCII values for a, b and c.

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