Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function oscarsCeremony(input) {
- let hallRent = Number(input[0]);
- let statues = hallRent - (hallRent * 30 / 100);
- let catering = statues - (statues * 15 / 100);
- let voicing = catering / 2;
- let totalPrice = hallRent + statues + catering + voicing;
- console.log(`${totalPrice.toFixed(2)}`);
- }
Advertisement
Add Comment
Please, Sign In to add comment