Java / "Advanced" 正在检查

Java / "Advanced" Checking

我正在尝试制作一个我找不到解决方案的程序:

我想检查 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.");
}