Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save maxchehab/efaba507b801d914268a5f69bf25b6a1 to your computer and use it in GitHub Desktop.
Save maxchehab/efaba507b801d914268a5f69bf25b6a1 to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
int main ()
{
int taxrate;
double costmeal, tiprate;
int totalcost;
cout<<"what is the cost of your meal";
cin>> costmeal;
cout<<" what is the tax rate";
cin>> taxrate;
cout<<"what is the tip rate";
cin>> tiprate;
int costtax;
costtax= costmeal + (costmeal * taxrate);
int tip;
tip = costmeal * tiprate;
totalcost = tip + costtax;
cout<< totalcost << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment