home *** CD-ROM | disk | FTP | other *** search
/ Java by Example / jbecd.bin / JBE-CD / NTUsers / JBECODE.ZIP / JavaByExample / chap05 / lst5_1.txt next >
Text File  |  1996-01-30  |  113b  |  7 lines

  1. // Calculate the amount of sales tax.
  2. a = b * c;
  3.  
  4. // Add the sales tax to the purchase amount.
  5. d = b + a;
  6.  
  7.