1、int intvert(unsigned int x,int p,int n)实现对x的进行转换,p为起始转化位, n为需要转换的长度,假设起始点在右边. 如x=0b0001 0001,p=4,n=3转换后x=0b0110 0001。 # include <stdlib.h> # include <stdio.h> # include <string.h> unsigned int intvert(unsigned int x, int p, int n) //p转化起始位,n转化长度 { unsigned i...