gpt4 book ai didi

Java/"Advanced"检查

转载 作者:行者123 更新时间:2023-12-02 12:24:38 26 4
gpt4 key购买 nike

我正在尝试编写一个程序,但找不到解决方案:

我想检查position_x是否为0或20或40或60或80或100或120...直到1280(始终加20)。

希望您能进一步帮助我,

谢谢!

最佳答案

您可以尝试在此处使用模数,例如

if (position_x % 20 == 0 && position_x >=0 && position_x <= 1280) {
System.out.println("position_x is a multiple of 20 and within range.");
}
else {
System.out.println("position_x is out of range or not a multiple of 20.");
}

关于Java/"Advanced"检查,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45532768/

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