美文网首页
24位有符号位转32位有符号位

24位有符号位转32位有符号位

作者: 骑上我心爱的小蜗牛 | 来源:发表于2021-03-23 10:55 被阅读0次

    include <stdio.h>

    int main()
    {
    int input = 0x800999;
    int input2 = 0;
    if((input&0x800000)==0x800000) //如果最高位为1,则是负数
    {
    input &= 0x7fffff;
    input2 = ~input+1;
    }

    /* 我的第一个 C 程序 */
    printf("Hello, World!%d %d \n",input,input2);

    return 0;
    }

    相关文章

      网友评论

          本文标题:24位有符号位转32位有符号位

          本文链接:https://www.haomeiwen.com/subject/vjzxhltx.html