BCD乘法错误

时间:2015-11-29 19:01:46

标签: java bcd

我的方法应该采用两个BCD,它们是从驱动程序构造的int,然后将它们相乘:

public BCD multiplyBCDs(BCD other){ //to multiply two BCDs together
    BCD basebcd = new BCD(digit);
    BCD otherbasebcd = other;
    int base = 0;
    for(int y = 0; y<basebcd.numberOfDigits();y++){
        base += digit[y];
        int g = y;
        while(g < basebcd.numberOfDigits()){
            digit[g]*=10;
            g++;
        }
    }
    int baser = 0;
    if(otherbasebcd.numberOfDigits() >= basebcd.numberOfDigits()){
        for(int v = 0; v < otherbasebcd.numberOfDigits(); v++){
            baser += base*otherbasebcd.nthDigit(v);
            int j = v;
            while(j < other.numberOfDigits()){
                byten(otherbasebcd.nthDigit(j));
                j++;
            }
        }
    }
    else{
        for(int v = 0; v < basebcd.numberOfDigits(); v++){
            baser += base*otherbasebcd.nthDigit(v);
            int j = v;
            while(j < other.numberOfDigits()){
                byten(otherbasebcd.nthDigit(j));
                j++;
            }
        }
    }
    BCD newBCD = new BCD(baser);
    return newBCD;
}

对于每个数字,byten方法应该将“other”乘以10,得到一个数字,如838而不是8 + 3 + 8。但如果我输入数字10和12,该方法将添加10 * 1和10 * 2,这将是30而不是120.任何建议?

byten:

public int byten(int j){
    j*=10;
    return j;
}

1 个答案:

答案 0 :(得分:0)

将输入更改为整数

int a= Integer.parseInt(basebcd.toString(), 2);
int b = Integer.parseInt(otherbasebcd.toString(), 2);

使用两个整数进行操作

res = i*j;

转换为BCD

String s = Integer.toBinaryString(res);