//01/28/08 //Sales Prediction - East Coast Sales Division generates 62 percent of total sales //predict sales if company has $4.6 million in sales this year. Display result on screen. #include using namespace std; int main() { double percent = .62;//creates double variable for percentage int sales = 4600000,//creates int variable for sales total predict;//creates int variable for predict which will be our answer cout <<"The company has $" << sales << " in sales this year.\n";//writes to screen cout <<"East Coast Sales Division generates " << percent*100 << "% of total sales.\n";//writes to screen predict = percent * sales;//multiplies sales by percentage and stores in predict cout <<"Predicted sales for East Coast Sales Division is $" << predict << ".\n";//writes to screen return 0;//returns int of 0 for main() }