Spocoman

Excursion

Jul 16th, 2022 (edited)
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function exscursion(input) {
  2.     let people = Number(input[0]);
  3.     let nights = Number(input[1]);
  4.     let cards = Number(input[2]);
  5.     let tickets = Number(input[3]);
  6.  
  7.     let total = people * (nights * 20 + cards * 1.60 + tickets * 6) * 1.25;
  8.  
  9.     console.log(`${total.toFixed(2)}`);
  10. }
  11.  
Add Comment
Please, Sign In to add comment