// File: For10Values.CPP // Fixed Number of Values; ; ; for loop // Find the Extremes in a List of 10 integers // Method of Iteration: for loop #include using namespace std; int const ValuesToProcess=10; int main() {int Count,Value,Min,Max; cout << "Enter the 1st Integer>"; cin >> Value; // Only Correct Method of Initializing Min and Max: // Set equal to initial Value Max=Min=Value; // The three elements of a counted loop are in one statement for (Count=2;Count<=10;Count++) { cout << "Enter the Next Integer>"; cin >> Value; if (Value>Max) Max=Value; else if (Value