结构推理
编写函数,实现左右循环移位。
【正确答案】
move_right(int x,int n) { int z; z=(x>>n)|(x<<(16-n)); return(z); } move_left(int x,int n) { int z; z=(x>>(16-n))|(x<
【答案解析】
提交答案
关闭