天天看点

微软面试题:编程实现两个正整数的除法

编程实现两个正整数的除法,当然不能用除法操作符。 

// return x/y. 

int div(const int x, const int y) { 

.... 

}

继续阅读