This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
int main () | |
{ | |
const int taxrate; | |
double costmeal, tiprate; | |
int toltalcost; | |
cout<<"what is the cost of your meal"; | |
cin>> costmeal; | |
cout<<" what is the tax rate"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
int main () | |
{ | |
const int taxrate; | |
double costmeal, tiprate; | |
int toltalcost; | |
cout<<"what is the cost of your meal"; | |
cin>> costmeal; | |
cout<<" what is the tax rate"; |