首页 > 学院 > 开发设计 > 正文

位运算练习(1、将整数中的几位取出来,取反输出二进制2、将整数中间某一位置位 )

2019-11-14 09:11:28
字体:
来源:转载
供稿:网友

1、  输入一个整数a,再输入两个整数p1,p2(p1,p2<32),将该整数的二进制表示方法中从右端开始的p1到p2位取反后输出

/*****************************************************copyright (C), 2016-2017, Lighting Studio. Co.,     Ltd. File name:Author:王    Version:0.1    Date: Description:Funcion List: *****************************************************/#include <stdio.h>int main(){	int a,p1,p2,temp1;	int i,mask;	PRintf("Enter the number:");	scanf("%d",&a);	printf("choose the number between p1 to p2:");	scanf("%d%d",&p1,&p2);	if(p1>p2)                                 // 如果p1>p2 时进行数据交换	{		p1 = p1 + p2;		p2 = p1 - p2;		p1 = p1 - p2;	}	if(p1 <= p2)	{		temp1 = a >> (p1-1);               // 将这个数右移,使得所需要的位数是从最右端开始	}	for(i=(p2-p1);i>=0;i--)                     // 选取p1和p2之间的这段位数		putchar(((temp1 >> i) & 1) ? '0' : '1');          // 输出这个数如果是1,则输出0,实现取反	printf("/n");    return 0;}

2、输入一个整数a,再输入两个整数p(p<32),v(0|1),将该整数a的p位设置为v,输出修改后的该整数的二进制表示.

/*****************************************************copyright (C), 2016-2017, Lighting Studio. Co.,     Ltd. File name:Author:王    Version:0.1    Date: Description:Funcion List: *****************************************************/#include <stdio.h>#include <string.h>int main(){	int a,p,v,mask,i;	printf("Enter a number:");	scanf("%d",&a);	printf("Enter the location:");	scanf("%d",&p);	printf("choose 0 or 1:");	scanf("%d",&v);	if(v == 0)                          //判断置0还是置1	{		mask = ~(1 << p-1);         // 设计掩码,使得所需要置0的那一位为0 		a = (a & mask);             // 按位与 实现清零	}	else	{		mask = (1 << p-1);           // 需要置1的那一位保持为1,其余为0,使用按位或 实现置1		a = (a | mask);	}	printf("The answer is:");	for(i=sizeof(a);i>=0;i--)		printf("%d",(a>>i)&1);	printf("/n");    return 0;}


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表