摘要: Divide two integers without using multiplication, division and mod operator.public class Solution { public int divide(int divid, int divis) { // Start typing your Java solution below // DO NOT write main() function long dividend = divid; long divisor = divis; boolean sign = false;... 阅读全文
posted @ 2013-01-07 22:41 西施豆腐渣 阅读(145) 评论(0) 推荐(0) 编辑