《深入理解计算机系统》Data Lab 实验

第1关:bitXor

任务描述
本关任务:

bitXor - x^y using only ~ and & 仅用运算符~ 和 & 实现计算x^y
Example: bitXor(4, 5) = 1 例如:bitXor(4, 5) = 1 0100 ^0101
0001

Legal ops: ~ & 合法运算符为: ~ &
Max ops: 14 最多可以使用运算符:14个
Rating: 1 难度系数:1
测试说明
平台会对你编写的代码进行测试:

开始你的任务吧,祝你成功!

int bitAnd(int x, int y) 
{
    
    /********* Begin *********/
    return (~

你可能感兴趣的:(Educoder实训,深度优先,算法)