C语言骚操作之没有加法运算符 发表于 2019-03-21 利用数学运算符实现不使用加法运算符实现加法的操作。 1234int add(int x, int y){ return y == 0 ? x : add( x ^ y, (x & y) << 1);}