Guest User

Untitled

a guest
Oct 16th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <?php
  2. function cigar_party($number_of_cigars, $is_weekend = false){
  3. if($is_weekend){
  4. if($number_of_cigars <= 39){
  5. return FALSE;
  6. }
  7. else{
  8. return TRUE;
  9. }
  10. }
  11. else{
  12. if(($number_of_cigars <= 39) || ($number_of_cigars >= 61)){
  13. return FALSE;
  14. }
  15. else{
  16. return TRUE;
  17. }
  18. }
  19. }
  20.  
  21. cigar_party(30, false); // Should return boolean false.
  22. cigar_party(50, false); // Should return boolean true.
  23. cigar_party(70, true); // Should return boolean true.
  24.  
  25.  
  26. ?>
Add Comment
Please, Sign In to add comment