Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
Salary Deductions
SUBMITTED BY:
Guest
DATE:
Oct. 2, 2013, 4:26 p.m.
FORMAT:
JavaScript
SIZE:
531 Bytes
Raw
Download
Tweet
HITS:
1067
Go to comments
Report
<
script
>
var
Totsal
=
prompt
(
"Total Salary:"
);
var
maxlate
=
prompt
(
"Maximum No. of Lates:"
);
var
nolate
=
prompt
(
"No. of Lates:"
);
var
totlate
=
nolate
%
maxlate
;
var
totAbsent
=
(
nolate
-
totlate
)
/
maxlate
;
var
deduction
=
totlate
*
10
+
totAbsent
*
100
;
document
.
write
(
"Salary: "
+
Totsal
+
"<br />"
);
document
.
write
(
"Salary Deduction: "
+
deduction
+
"<br />"
);
document
.
write
(
"Net Salary: "
+
(
Totsal
-
deduction
)
+
"<br />"
);
<
/script>
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus