On 12/23/07 12:08 PM, in article 13mt61e6jrttn88@[EMAIL PROTECTED]
"Joe"
<joe@[EMAIL PROTECTED]
> wrote:
> +,* and -.
>
>
> var
> price,total,tax: interger;
>
> write('Price : ');readln(price);
> write('Tax Rate : ');readln(tax);
>
> total:= price * tax;
>
> write('Your total is : $', total);
>
> Can some one tell me how to do this so that it works. Thanks
Total is Price + (Tax on the Price)...
(Tax on the Price) is price * tax...
See?


|