if (number1 + 8 == number2 || number1 - 8 == number2){
if (name1.equals(name2)){
if (cod1 == cod2){
if (some1.equals(some2)){
System.out.println("They're in the same group");
}
System.out.println("They are in the same column");;
}
System.out.println("They are in the same section");
}
System.out.println("They are in the same subgroup");
}
else{
System.out.println("They are different");
}
}
}
我怎样才能改变这一点,以便最后只收到一条消息?现在它给出了所有的信息,或者只是它们不同。我知道我不能真正休息,因为这不是一个循环,但我可以在这个问题上采取什么行动?我必须重写它吗?感谢您的帮助。