Asks the user for a number of tires and price per tire, then calculates a total price, adding sales tax. - C Operator

C examples for Operator:Arithmetic Operator

Description

Asks the user for a number of tires and price per tire, then calculates a total price, adding sales tax.

Demo Code

#include <stdio.h>
#define SALESTAX .07/*from  w  w  w  . j a v a 2 s.  co  m*/

int main(){

    int numTires;
    float tirePrice, beforeTax, netSales;

    printf("How many tires did you purchase? ");
    scanf(" %d", &numTires);

    printf("What was the cost per tire (enter in $XX.XX format)? ");
    scanf(" $%f", &tirePrice);

    beforeTax = tirePrice * numTires;
    netSales = beforeTax + (beforeTax * SALESTAX);
    printf("%You spent $%.2f on your tires\n\n\n", netSales);

    return 0;
}

Result


Related Tutorials