Advertisement
Guest User

Untitled

a guest
Jan 27th, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. function smallShop(input){
  2. let product = input.shift();
  3. let town = input.shift();
  4. let quantity = Number(input.shift());
  5.  
  6. let price = 0;
  7.  
  8. if(town = "Sofia"){
  9. if(product = "cofee"){
  10. price = quantity * 0.50;
  11. } else if(product = "water"){
  12. price = quantity * 0.80;
  13. } else if(product = "beer"){
  14. price = quantity * 1.20;
  15. } else if(product = "sweets"){
  16. price = quantity * 1.45;
  17. } else if( product = "peanuts")
  18. price = quantity * 1.60;
  19.  
  20. } else if(town = "Plovdiv"){
  21. if(product = "cofee"){
  22. price = quantity * 0.40;
  23. } else if(product = "water"){
  24. price = quantity * 0.70;
  25. } else if(product = "beer"){
  26. price = quantity * 1.15;
  27. } else if(product = "sweets"){
  28. price = quantity * 1.30;
  29. } else if( product = "peanuts")
  30. price = quantity * 1.50;
  31.  
  32. } else if(town = "Varna"){
  33. if(product = "cofee"){
  34. price = quantity * 0.45;
  35. } else if(product = "water"){
  36. price = quantity * 0.70;
  37. } else if(product = "beer"){
  38. price = quantity * 1.10;
  39. } else if(product = "sweets"){
  40. price = quantity * 1.35;
  41. } else if( product = "peanuts")
  42. price = quantity * 1.55;
  43.  
  44. } console.log(price)
  45.  
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement