En este artículo, discutiremos el tipo de datos int en C++ . Se utiliza para almacenar un entero de 32 bits .
Algunas propiedades del tipo de datos int son:
- Al ser un tipo de datos firmado, puede almacenar valores positivos y valores negativos.
- Toma un tamaño de 32 bits donde se usa 1 bit para almacenar el signo del entero.
- Un valor entero máximo que se puede almacenar en un tipo de datos int suele ser 2, 147, 483, 647 , alrededor de 2 31 – 1 , pero depende del compilador .
- El valor máximo que se puede almacenar en int se almacena como una constante en el archivo de encabezado <climits> cuyo valor se puede usar como INT_MAX .
- Un valor entero mínimo que se puede almacenar en un tipo de datos int suele ser -2, 147, 483, 648 , alrededor de -2 31 , pero depende del compilador.
- En caso de desbordamiento o subdesbordamiento del tipo de datos, el valor se ajusta. Por ejemplo, si -2, 147, 483, 648 se almacena en un tipo de datos int y se le resta 1 , el valor de esa variable será igual a 2, 147, 483, 647 . Del mismo modo, en caso de desbordamiento, el valor se redondeará a -2, 147, 483, 648 .
A continuación se muestra el programa para obtener el valor más alto que se puede almacenar en int en C++:
C++
// C++ program to obtain the maximum // value that can be store in int #include <climits> #include <iostream> using namespace std; // Driver Code int main() { // From the constant of climits // header file int valueFromLimits = INT_MAX; cout << "Value from climits " << "constant (maximum): "; cout << valueFromLimits << "\n"; valueFromLimits = INT_MIN; cout << "Value from climits " << "constant(minimum): "; cout << valueFromLimits << "\n"; // Using the wrap around property // of data types // Initialize two variables with // value -1 as previous and another // with 0 as present int previous = -1; int present = 0; // Keep on increasing both values // until the present increases to // the max limit and wraps around // to the negative value i.e., present // becomes less than previous value while (present > previous) { previous++; present++; } cout << "\nValue using the wrap " << "around property:\n"; cout << "Maximum: " << previous << "\n"; cout << "Minimum: " << present << "\n"; return 0; }
Producción:
Value from climits constant (maximum): 2147483647 Value from climits constant(minimum): -2147483648 Value using the wrap around property: Maximum: 2147483647 Minimum: -2147483648
Publicación traducida automáticamente
Artículo escrito por UtkarshPandey6 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA