Salary Deductions


SUBMITTED BY: Guest

DATE: Oct. 2, 2013, 4:26 p.m.

FORMAT: JavaScript

SIZE: 531 Bytes

HITS: 1044

  1. <script>
  2. var Totsal = prompt("Total Salary:");
  3. var maxlate = prompt("Maximum No. of Lates:");
  4. var nolate = prompt("No. of Lates:");
  5. var totlate = nolate % maxlate;
  6. var totAbsent = (nolate - totlate) / maxlate;
  7. var deduction = totlate * 10 + totAbsent * 100;
  8. document.write("Salary: " + Totsal + "<br />");
  9. document.write("Salary Deduction: " + deduction + "<br />");
  10. document.write("Net Salary: " + (Totsal - deduction) + "<br />");
  11. </script>

comments powered by Disqus