int数据类型的最大数

Posted 2018jason

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了int数据类型的最大数相关的知识,希望对你有一定的参考价值。

 1 /* 32位系统 */
 2 #include <stdio.h>
 3 
 4 int main()
 5 
 6     int a = 0, b = 0;
 7     while (++a>0)
 8     
 9         ;
10     
11     printf("int数据类型最大数是:%d\n", a - 1);
12 
13     int n = a - 1;
14     do
15     
16         n = n / 10;
17         b++;
18      while (n > 0);
19     printf("int数据类型最大数共有%d位。\n", b);
20     
21     return 0;
22 

 

以上是关于int数据类型的最大数的主要内容,如果未能解决你的问题,请参考以下文章

int类型最大值

MySQL数据库中 int 长度最大是多少?

对这个带有 & 不带 = 的代码片段返回类型感到非常困惑

leetcode刷题31

JAVA 各种数值类型最大值和最小值 Int, short, char, long, float,&nbs

我写了这段代码来找到最大和最小的(int)数,但它不起作用