Who can explain to me the meaning and usage of int in C++ language?
Int can define integer variables, int a;; This means that a is defined as an integer variable. It should be noted that the maximum value of a can only be 2 147483647, and it will cross the line if it is larger. Similarly, when the integer variable is divided, the result will only remain to the integer bit.