if(i%8000!=0) { if(i>=8&&ain.getPoint_id()==1) { return; } }这么优化
时间: 2024-06-03 10:09:04 浏览: 86
osnet_ain_x1_0_imagenet.pth.zip
) { System.out.println("i is greater than or equal to 8 and not divisible by 100"); } else { System.out.println("i is less than 8 and not divisible by 100"); } } else { System.out.println("i is divisible by 100"); }
This code checks if the integer variable i is not divisible by 100. If so, it then checks if i is greater than or equal to 8. If i passes both conditions, it prints "i is greater than or equal to 8 and not divisible by 100". If i fails the second condition, it prints "i is less than 8 and not divisible by 100". If i is divisible by 100, it prints "i is divisible by 100".
阅读全文