//DISPLAY 4.11 Local Variables //Computes the average yield on an experimental pea growing patch. #include using namespace std; double est_total(int min_peas, int max_peas, int pod_count); //Returns an estimate of the total number of peas harvested. //The formal parameter pod_count is the number of pods. //The formal parameters min_peas and max_peas are the minimum //and maximum number of peas in a pod. int main( ) { int max_count, min_count, pod_count; //uncomment this to demo variable scope // average_pea = 0.0; double average_pea, yield; cout << "Enter minimum and maximum number of peas in a pod: "; cin >> min_count >> max_count; cout << "Enter the number of pods: "; cin >> pod_count; cout << "Enter the weight of an average pea (in ounces): "; cin >> average_pea; cout <<"Before calling est_total: average_pea=" << average_pea<