#include //for std::cout #include //for std::numeric_limits #include //for EXIT_SUCCESS using namespace std; int main() { //Define, declare, and initialize a variable. int price {10}; int maxInt {numeric_limits::max()}; int minInt {numeric_limits::min()}; cout << "The variable contains " << price << ".\n"; cout << "The maximum value this type of variable could contain is " << maxInt << ".\n"; cout << "The minimum value this type of variable could contain is " << minInt << ".\n"; return EXIT_SUCCESS; }