fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int purchase = 52; // Price in Dollars before tax
  6. float sales_tax = 0.04;
  7. float csales_tax = 0.02; // County sales tax
  8. float total_tax = (purchase * sales_tax) + (purchase * csales_tax);
  9. float net_cost = purchase + total_tax; // Net price of purchase after taxes is included
  10. cout << net_cost;
  11. return 0;
  12. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
55.12