popovIliya

March-2022-FirstStepsInCoding-Exercise-Soft Uni - Vacation Books List

Mar 4th, 2022
1,202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function calculateHours(input){
  2. let allPages = parseInt(input[0]);
  3. let readingPages = parseInt(input[1]);
  4. let days = parseInt(input[2]);
  5. let hours = ((allPages / days) / readingPages);
  6. console.log(hours)
  7. }
Advertisement
Add Comment
Please, Sign In to add comment