Advertisement
Spocoman

Oscars Ceremony

Feb 26th, 2022
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function oscarsCeremony(input) {
  2.     let hallRent = Number(input[0]);
  3.     let statues = hallRent * 0.7;
  4.     let catering = statues * 0.85;
  5.     let soundSystem = catering / 2;
  6.     let sum = hallRent + statues + catering + soundSystem;
  7.     console.log(`${sum.toFixed(2)}`);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement