Advertisement
nevenailievaa

01. Cinema

Mar 16th, 2025
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function cinema(projectionType, rows, cols){
  2.  
  3.     let ticketsCount = rows * cols;
  4.     let income = 0;
  5.  
  6.     if(projectionType === 'Premiere'){
  7.         income = ticketsCount * 12;
  8.     } else if (projectionType === 'Normal'){
  9.         income = ticketsCount * 7.5;
  10.     } else if (projectionType === 'Discount'){
  11.         income = ticketsCount * 5;
  12.     }
  13.  
  14.     console.log(`${income.toFixed(2)} leva`);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement