C Primer Plus(第六版)15.9 编程练习 第5题

这篇文章介绍了如何在C语言中使用`rotate`和`itobs`函数进行位操作,通过`rotate`函数实现整数的循环左移和右移,`itobs`函数则将整数转换为ASCII字符表示。
摘要由CSDN通过智能技术生成

//

//  main.c

//  15.9-5

//

//  Created by cjm on 2024/2/5.

//

#include <stdio.h>

#include <limits.h>

char * itobs(int n, char * ps);

unsigned int  rotate(unsigned int x,int i);

int main()

{

    unsigned int x=2999999999;

    printf("%u\n",rotate(x,3));//注意这里的打印格式

    return 0;

}

unsigned int rotate(unsigned int x,int i)

{

    

    unsigned int len;

    len = sizeof(unsigned int)*CHAR_BIT;

    char str[len+1];

    

    while(i!=0)

    {

        printf("旋转前    x=%s\n",itobs(x, str));

        printf("      x<<1=%s\n",itobs(x<<1, str));

        printf("x>>(len-1)=%s\n",itobs(x>>(len-1), str));

        x=x<<1|((x>>(len-1))&1);

        printf("旋转后    x=%s\n",itobs(x, str));

        i--;

    }

    

    return x;

    

}

char * itobs(int n, char * ps)

{

    int i;

    const static int size = CHAR_BIT * sizeof(int);

    

    for (i = size - 1; i >= 0; i--, n >>= 1)

    {

        ps[i] = (01 & n) + '0';

    }

    ps[size] = '\0';

    return ps;

}

  • 10
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值