Guest User

Untitled

a guest
Feb 17th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. cout << "Thank you for your business!n";
  2. cout << endl << endl << endl;
  3. cout << fixed;
  4. cout << setprecision(2);
  5. cout << "Sub-total:" << setw(11) << "$" << SubTotal << endl;
  6. cout << "+Sales Tax:" << setw(12) << "$" << SalesTax << endl;
  7. cout << "-Discount:" << setw(13) << "$" << Discount << endl;
  8. cout << "+Shipping:" << setw(13) << "$" << ShippingCost << " (shipping to " << Destination << ")" << endl;
  9. cout << "=Total:" << setw(14) << "$" << Total << endl;
Add Comment
Please, Sign In to add comment