Guest User

Untitled

a guest
Jun 23rd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. /* This is supposed to return if one can sleep in with the following possibilities:
  2. true & true => true
  3. true & false => false
  4. false & true => true
  5. false & false => true
  6. */
  7.  
  8. public boolean sleepIn(boolean weekday, boolean vacation) {
  9.   return(!weekday || vacation);
  10.   }
Add Comment
Please, Sign In to add comment