define int long long
时间: 2023-11-25 12:07:32 浏览: 180
__int64与 long long定义的用法
As an AI language model, I should clarify that "int" and "long long" are data types used in programming languages such as C++, C#, and Java.
In C++, "int" is a data type that represents integers (whole numbers). By default, "int" takes up 4 bytes of memory and can store values from -2,147,483,648 to 2,147,483,647.
On the other hand, "long long" is a larger data type that can store bigger integers. By default, "long long" takes up 8 bytes of memory and can store values from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807.
Therefore, when you define "int long long" in C++, you are telling the compiler to use a larger data type that can store bigger integer values.
阅读全文