Advertisement
Liliana797979

vqrno reshenie na cinema

Dec 12th, 2020
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function cinema(type, arg1, arg2) {
  2.     let rows = Number(arg1);
  3.     let columns = Number(arg2);
  4.     let income = 0;
  5.  
  6.     if (type == "Premiere") {
  7.         income = rows * columns * 12.0;
  8.     } else if (type == "Normal") {
  9.         income = rows * columns * 7.50;
  10.     } else if (type == "Discount") {
  11.         income = rows * columns * 5.00;
  12.     }
  13.     console.log(`${income.toFixed(2)} leva`);
  14. }
  15.  
  16. cinema("Premiere", "10", "12");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement