code is not working. I think this might have to do with the floating point in the constant " TAX_FACTOR=0.0070. The code is:
ShowTax() {
           local TAX_FACTOR=0.0070
           echo "Enter the property's value."
           read propertyValue
          tax=$((expr $propertyValue*$TAX_FACTOR )) #there is a problem
          echo "The property tax is:" "$tax"      
          }
  # Main
    echo " Enter lot number of property or 0 to end"
    read lotNumber
    while(( $lotNumber != 0 ));do 
       showTax
       echo "Enter the lot number for the next property or 0 to end"
       read lotNumber
   done
 
    