码迷,mamicode.com
首页 > 其他好文 > 详细

unsigned int表示负数问题

时间:2017-10-03 21:10:56      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:lin   proc   table   number   ...   key   text   ons   str   

1
2
3
4
5
6
7
8
9
10
11
12
#include<stdio.h>
int main()
{
    unsigned char i=7;
    int j=0;
    for(;i>0;i-=3)
    {
       ++j;
     }
     printf("%d\n",j);
     return 0;
}
请问该程序的输出是多少?
————————————————
unsigned char 8位数据位,范围0-255,
所以-2(11111110)时,溢出变成254;
同理-1(11111111)时,溢出变成255;
最后减到0时,不满足循环条件,for停止。
刚好173次。
7 4 1 ==> 共(7-1)/3+1=3次(1-3=-2,即254,继续循环)
254 251 ... 5 2 ==> 共(254-2)/3+1=85次(2-3=-1,即255,继续循环)
255 252 ... 6 3 ==> 共(255-5)/3+1=85次(3-3=0,退出循环)
所以总共173次。

unsigned int表示负数问题

标签:lin   proc   table   number   ...   key   text   ons   str   

原文地址:http://www.cnblogs.com/fenglongyu/p/7624452.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!