📜  C ++中int的最大值

📅  最后修改于: 2021-05-31 20:27:20             🧑  作者: Mango

在本文中,我们将讨论C++中的int数据类型。它用于存储32位整数

int数据类型的一些属性是:

  • 作为有符号数据类型,它可以存储正值和负值。
  • 大小为32位,其中1位用于存储整数的符号。
  • 可以以int数据类型存储的最大整数值通常为2、147、483、647 ,大约为2 31 – 1 ,但取决于编译器。
  • 可以存储在int中的最大值作为常量存储在头文件中,该文件的值可以用作INT _ MAX
  • 可以以int数据类型存储的最小整数值通常为-2、147、483、648 (约为-2 31) ,但取决于编译器。
  • 如果数据类型上溢或下溢,则将值包装起来。例如,如果将-2、147、483、648存储为int数据类型,并从中减去1 ,则该变量中的值将等于2、147、483、647 同样,在发生溢出的情况下,该值将四舍五入为-2、147、483、648

下面是获取可以在C++中存储在int中的最大值的程序:

C++
// C++ program to obtain the maximum
// value that can be store in int
#include 
#include 
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;
}


输出:
Value from climits constant (maximum): 2147483647
Value from climits constant(minimum): -2147483648

Value using the wrap around property:
Maximum: 2147483647
Minimum: -2147483648
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”