我正在尝试制作一个无法找到解决方案的程序:
我想检查position_x是0还是20或40或60或80或100或120 ......直到1280(总是加20)。
我希望你能进一步帮助我,
谢谢!
答案 0 :(得分:1)
您可以尝试使用模数,例如
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.");
}