Skip to content

Instantly share code, notes, and snippets.

  • Save nazmul202101/f155eaeb6da62a820e5910bcda698589 to your computer and use it in GitHub Desktop.
Save nazmul202101/f155eaeb6da62a820e5910bcda698589 to your computer and use it in GitHub Desktop.
//Warmup-1
//monkeyTrouble
//We have two monkeys, a and b, and the parameters aSmile and bSmile indicate if each is smiling. We are in trouble if they are both smiling or if neither of them is smiling. Return true if we are in trouble.
//monkeyTrouble(true, true) → true
//monkeyTrouble(false, false) → true
//monkeyTrouble(true, false) → false
public boolean monkeyTrouble(boolean aSmile, boolean bSmile) {
if(aSmile==bSmile){
return true;
}
else{
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment