Programming question

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mel6167
    New Member
    • Oct 2014
    • 1

    Programming question

    I have been doing this a very short time im writing a program in Raptor. Add up 5 grocery items subtotal add tax of 0.06 or 6% of subtotal and add th tax to the subtotal. I got as far as the subtotal and can not get the right technique to calculate the rest . this assignments due by midnight I just need some hints please
  • Rabbit
    Recognized Expert MVP
    • Jan 2007
    • 12517

    #2
    The formula is:
    Code:
    1.06 * (sum of items)

    Comment

    Working...