// File: ForLoopNoErrorAsk.CPP // AskBeforeIterating; ; Initialize Using First Value; For Loop // Find the Extremes in a List of integers // Method of Iteration: for loop, conditional #include #include #define False 0 #define True 1 using namespace std; int main() {int Value,Min,Max,ValuesToProcess; char Reply; cout << "Press Y to Enter an Integer. Press N to Abort >"; cin >> Reply; if (toupper(Reply)=='Y') { cout << "Enter the 1st Integer >"; cin >> Value; Max=Min=Value; for ( // Init Code cout << "Press Y to Enter Another Integer. Press N to Abort >", cin >> Reply; // Condition toupper(Reply)!='N' ; // End of Iteration Action cout << "Press Y to Enter Another Integer. Press N to Abort >", cin >> Reply) { cout << "Enter the Next Integer >"; cin >> Value; if (Value>Max) Max=Value; else if (Value