Advertisement
MartinGeorgiev

01. SoftUni Reception

Jun 1st, 2022
699
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. $a = readline();
  4. $b = readline();
  5. $c = readline();
  6. $questions = readline();
  7.  
  8. $answers = $a + $b + $c;
  9.  
  10. $hours = ceil($questions/$answers);
  11. $hours += floor($hours / 3);
  12. if($hours%4==0&&$hours>1){
  13. $hours--;
  14. }
  15. echo "Time needed: {$hours}h.";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement