Thread
:
Calculate Tax in java
View Single Post
#
2
(
permalink
)
07-25-2007, 10:33 PM
Seemster
Member
Join Date: Jul 2007
Posts: 55
private double taxRate = .15;
public double calcTax(double amount) {
return amount * taxRate;
}
Seemster
View Public Profile
Send a private message to Seemster
Find all posts by Seemster