From: <whe...@us...> - 2003-07-13 04:18:40
|
Update of /cvsroot/ordweb/uop/pos407/team/week3 In directory sc8-pr-cvs1:/tmp/cvs-serv30718/pos407/team/week3 Added Files: Calculation.java Log Message: init - creating stubs for calculation class --- NEW FILE: Calculation.java --- public class Calculation { /* display result */ public double displayResult() { return 0; } /* get cumulative total of wagers */ public double getCumulative() { return 0; } /* what is the payout so far */ public double GetPayOut(String in1, String in2, String in3) { return 0; } } |