Advertisement
Guest User

discount

a guest
Nov 17th, 2019
2,526
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. var items = +gets()
  2.  
  3. for (var x=items; x>=1; x--) {
  4. price = (+gets()*35)
  5. if (price%(Math.round(price))>=5) {
  6. price = (Math.floor(price+1))/100
  7. }
  8. else {
  9. price = (Math.floor(price))/100
  10. }
  11. print (price.toFixed(2))
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement