// pgm1 -- data, variables, expressions // 8/31/16 #include #include using namespace std; int main() { double celc=33; double faran; faran = (9.0/5)*celc+32; cout << celc << " degrees C equals " << faran << " degrees F." << endl; return 0; } /*LAB 3: define variables and expressions to do the following: Given a price, calculate the sales tax on the price, which is 8.875% of the price. Print the base price and the sales tax and print the total price (including tax). */