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