Advertisement
Spocoman

04. Vacation Books List

Nov 30th, 2021
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function vacantionBookLists(input) {
  2.     let lists = parseInt(input[0]);
  3.     let listsPerHour = parseInt(input[1]);
  4.     let day = parseInt(input[2]);
  5.     let hoursPerDay = lists / listsPerHour / day;
  6.     console.log(hoursPerDay);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement