gpt4 book ai didi

java - 偶/奇 Java 测试

转载 作者:行者123 更新时间:2023-11-28 21:01:01 29 4
gpt4 key购买 nike

这个测试行得通吗?:

if (testInt/2).ofType(Integer){
//to-do if even
}

我假设它会 iff 编译器在 ofType() 之前解析 testInt/2;是这样吗??

最佳答案

最好的方法是始终使用模数运算符。

if (testInt % 2 == 0)
{
//Do stuff
}

//3 % 2 = 1 , therefore odd
//4 % 2 = 0 , therefore even

模数就是除法的余数。

关于java - 偶/奇 Java 测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35821437/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com