首页 > 编程语言 > 详细

c语言 7-5

时间:2021-05-19 23:41:12      阅读:39      评论:0      收藏:0      [点我收藏+]

编写set_n函数,返回将无符号整数x的第pos位到第pos + n - 1 位的 n 位 设为1后的值。

1、

#include <stdio.h>

unsigned set_n(unsigned x, int pos, int n)
{
    int i;
    for(i = pos; i <= pos + n - 1; i++)
    {
        x = (x | 1 << i);
    }
    return x;
}

int main(void)
{
    unsigned x;
    int pos, i;
    puts("please input three nonnegative integers.");
    printf("x = "); scanf("%u", &x);
    printf("pos = "); scanf("%d", &pos);
    printf("i = "); scanf("%d", &i);
    
    printf("result: %u\n", set_n(x, pos, i));
    return 0;
}

技术分享图片

 

c语言 7-5

原文:https://www.cnblogs.com/liujiaxin2018/p/14786290.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!