Java > Warmup-1 > monkeyTrouble (CodingBat Solution)

Problem:

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


Solution:

public boolean monkeyTrouble(boolean aSmile, boolean bSmile) {
  if (aSmile && bSmile)
    return true;
  else if (!aSmile && !bSmile)
    return true;
  else
    return false;
}


1 comment :

  1. public final boolean monkeyTrouble(boolean aSmile, boolean bSmile) {
    return aSmile == bSmile;
    }

    ReplyDelete

Follow Me

If you like our content, feel free to follow me to stay updated.

Subscribe

Enter your email address:

We hate spam as much as you do.

Upload Material

Got an exam, project, tutorial video, exercise, solutions, unsolved problem, question, solution manual? We are open to any coding material. Why not upload?

Upload

Copyright © 2012 - 2014 Java Problems  --  About  --  Attribution  --  Privacy Policy  --  Terms of Use  --  Contact