// File:Do10Values.CPP // Fixed Number of Values; ; ; do-while loop // Find the Extremes in a List of 10 integers // Method of Iteration: do-while loop, counted #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=1; // Counter Initialization do { Count++; // Counter Incrementation cout << "Enter the Next Integer>"; cin >> Value; if (Value>Max) Max=Value; else if (Value