// File: While10Values.CPP // Fixed Number of Values; ; ; while loop // Find the Extremes in a List of 10 integers // Method of Iteration: while 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; Count=2; // Counter Initialization while (Count<=10) { // Condition Based on Counter cout << "Enter the Next Integer>"; cin >> Value; if (Value>Max) Max=Value; else if (Value