// file: variables.cpp // CSP125 Lab02 Spring 2005 #include using namespace std; int main() { // declare the variables double a, b, c; int e, f; char g // assign initial values to variables c = 30.4; f = 42; g = 'X'; // compute the answer b = f / c; f++; b += f; b * c = a; cout << "the answer is: " << a << g << endl;