Advertisement
Spocoman

PC Store

Aug 14th, 2022
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function pcStore(input) {
  2.     let procesor = Number(input[0]);
  3.     let video = Number(input[1]);
  4.     let ram = Number(input[2]);
  5.     let ramCount = Number(input[3]);
  6.     let discount = Number(input[4]);
  7.  
  8.     let totalPrice = ((procesor + video) * (1 - discount) + ram * ramCount) * 1.57;
  9.  
  10.     console.log(`Money needed - ${totalPrice} leva.`);
  11. }
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement