popovIliya

March-2022-FirstStepsInCoding-Lab-SoftUni - Yard Greening

Feb 26th, 2022
1,072
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function yardGreening(input){
  2.  let m = Number(input[0]);
  3.  let price = m * 7.61;
  4.  let discount = price * 0.18;
  5.  //let sum = price - discount;
  6.  //console.log(`The final price is: ${sum}`);
  7.  console.log(`The final price is: ${price-discount} lv.`);
  8.  console.log(`The discount is: ${discount} lv.`)
  9. }
Advertisement
Add Comment
Please, Sign In to add comment