#include #include //for the i/o manipulatro setw #include #include //for class numeric_limits using namespace std; int main() { const int maximum {numeric_limits::max()}; const int minimum {numeric_limits::min()}; cout << setw(11) << maximum << " is the maximum value that can be stored in an int.\n"; cout << setw(11) << minimum << " is the minimum value that can be stored in an int.\n"; return EXIT_SUCCESS; }