//File : Rainfall.h //Author : Andre Long //Due : December 1, 2004 //Description : This is a modification of CH7pc2 where we will use vectors with STL // where a user can enter the monthly rain fall and the program will // calculate and display results (annual rainfall, average monthly rainfall // high and low rainfall months #include #include #include #include #include using namespace std; void main() { float x; float annualRain =0; float avgRain; float lowRain; float highRain; string month[12]; month[0]="January"; month[1]="Febuary"; month[2]="March"; month[3]="April"; month[4]="May"; month[5]="June"; month[6]="July"; month[7]="August"; month[8]="September"; month[9]="October"; month[10]="November"; month[11]="December"; cout<<"Welcome to the Sacramento Rainfall Register "< rainForMonth; vector::iterator iter; for(int i=0; i<12; i++) { cout<>x; rainForMonth.push_back(x); }//ends for loop for data entry cout<<"The data you just entered is "<