我正在尝试将三个长度与 0 进行比较,并且想知道是否有比重复“!= 0”更有效/更干净的方法。
public static boolean isTriangle(int lengthA, int lengthB, int lengthC) {
if (lengthA != 0 && lengthB != 0 && lengthC != 0) { //is there a shorter/cleaner way to write this?
//do a thing
}
return false;
}
智慧大石
慕桂英546537
森栏
www说
相关分类