7月_C++_1

  1. #include <iostream> #include <climits> //climits包含整型的限制信息,INT_MAX为int的最大取值,CHAR_BIT为字节的位数 using namespace std; int main() { int n_int = INT_MAX; short n_short = SHRT_MAX; long n_long = LONG_MAX;
相关文章
相关标签/搜索