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");
}
}
}
我怎麼能改變這個,讓我只在最後得到一個消息?現在它提供了所有的信息,或只是它們不同。我知道我不能把一個實際的休息,因爲這不是一個循環,但我可以採取什麼行動在這個問題?我需要重寫嗎?感謝您的幫助。如何在java上使用if語句結束一個結果?
儘可能使用'else' .. – karthikr