如何检查一个数字是奇数还是偶数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何检查一个数字是奇数还是偶数相关的知识,希望对你有一定的参考价值。
How to check if a number is odd or even in php. Could also use the MOD (%) function, but apparently this method is better performance-wise.
// Change '10' to be any number you want <?=(10&1) ? "odd" : "even"?>
以上是关于如何检查一个数字是奇数还是偶数的主要内容,如果未能解决你的问题,请参考以下文章